mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-15 22:13:02 +00:00
[DURACOM-247] Refactoring SSR configuration in order to align it with new nomenclature
This commit is contained in:
@@ -3,10 +3,10 @@ import { BuildConfig } from '../config/build-config.interface';
|
||||
export const environment: Partial<BuildConfig> = {
|
||||
production: true,
|
||||
|
||||
// Angular Universal settings
|
||||
universal: {
|
||||
preboot: true,
|
||||
async: true,
|
||||
time: false,
|
||||
// Angular SSR settings
|
||||
ssr: {
|
||||
enabled: true,
|
||||
enablePerformanceProfiler: false,
|
||||
inlineCriticalCss: true,
|
||||
},
|
||||
};
|
||||
|
@@ -7,14 +7,14 @@ import { NotificationAnimationsType } from '../app/shared/notifications/models/n
|
||||
export const environment: BuildConfig = {
|
||||
production: false,
|
||||
|
||||
// Angular Universal settings
|
||||
universal: {
|
||||
preboot: true,
|
||||
async: true,
|
||||
time: false,
|
||||
// Angular SSR settings
|
||||
ssr: {
|
||||
enabled: true,
|
||||
enablePerformanceProfiler: false,
|
||||
inlineCriticalCss: true,
|
||||
},
|
||||
|
||||
// Angular Universal server settings.
|
||||
// Angular express server settings.
|
||||
ui: {
|
||||
ssl: false,
|
||||
host: 'dspace.com',
|
||||
|
@@ -8,11 +8,11 @@ import { BuildConfig } from '../config/build-config.interface';
|
||||
export const environment: Partial<BuildConfig> = {
|
||||
production: false,
|
||||
|
||||
// Angular Universal settings
|
||||
universal: {
|
||||
preboot: false,
|
||||
async: true,
|
||||
time: false,
|
||||
// Angular SSR settings
|
||||
ssr: {
|
||||
enabled: false,
|
||||
enablePerformanceProfiler: false,
|
||||
inlineCriticalCss: true,
|
||||
},
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user