Skip to content

Commit ccbd922

Browse files
[DSC-1900] Disabled cache by default
1 parent b310c73 commit ccbd922

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/config/default-app-config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export class DefaultAppConfig implements AppConfig {
102102
// Defaults to caching 1,000 pages. Each page expires after 1 day
103103
botCache: {
104104
// Maximum number of pages (rendered via SSR) to cache. Setting max=0 disables the cache.
105-
max: 1000,
105+
max: 0, // disabled by default
106106
// Amount of time after which cached pages are considered stale (in ms)
107107
timeToLive: 24 * 60 * 60 * 1000, // 1 day
108108
allowStale: true,

0 commit comments

Comments
 (0)