mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
13 lines
237 B
TypeScript
13 lines
237 B
TypeScript
import { AppConfig } from '../config/app-config.interface';
|
|
|
|
export const environment: Partial<AppConfig> = {
|
|
production: true,
|
|
|
|
// Angular Universal settings
|
|
universal: {
|
|
preboot: true,
|
|
async: true,
|
|
time: false
|
|
}
|
|
};
|