mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-16 06:23:03 +00:00
13 lines
245 B
TypeScript
13 lines
245 B
TypeScript
import { BuildConfig } from '../config/build-config.interface';
|
|
|
|
export const environment: Partial<BuildConfig> = {
|
|
production: true,
|
|
|
|
// Angular Universal settings
|
|
universal: {
|
|
preboot: true,
|
|
async: true,
|
|
time: false,
|
|
},
|
|
};
|