mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-12 04:23:04 +00:00
13 lines
243 B
TypeScript
13 lines
243 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
|
|
}
|
|
};
|