Merge remote-tracking branch 'github/main' into DS-8408

This commit is contained in:
aroman-arvo
2023-02-13 11:31:03 +01:00
450 changed files with 21630 additions and 4069 deletions

View File

@@ -55,6 +55,20 @@ export const environment: BuildConfig = {
defaultTime: 0,
maxBufferSize: 100,
timePerMethod: { [RestRequestMethod.PATCH]: 3 } as any // time in seconds
},
// In-memory cache of server-side rendered pages. Disabled in test environment (max=0)
serverSide: {
debug: false,
botCache: {
max: 0,
timeToLive: 24 * 60 * 60 * 1000, // 1 day
allowStale: true,
},
anonymousCache: {
max: 0,
timeToLive: 10 * 1000, // 10 seconds
allowStale: true,
}
}
},
@@ -287,4 +301,12 @@ export const environment: BuildConfig = {
sortMetadata:"dc.title",
sortDirection:"ASC",
},
vocabularies: [
{
filter: 'subject',
vocabulary: 'srsc',
enabled: true
}
]
};