refactor environment.prod.ts to environment.production.ts

This commit is contained in:
William Welling
2021-12-17 08:14:15 -06:00
parent 21fcc9dde8
commit 4c46d9db2b
7 changed files with 7 additions and 7 deletions

View File

@@ -0,0 +1,12 @@
import { AppConfig } from '../config/app-config.interface';
export const environment: Partial<AppConfig> = {
production: true,
// Angular Universal settings
universal: {
preboot: true,
async: true,
time: false
}
};