diff --git a/config/environment.default.js b/config/environment.default.js index 3db04aafa9..eb29f82d77 100644 --- a/config/environment.default.js +++ b/config/environment.default.js @@ -1,5 +1,5 @@ module.exports = { - // Angular2 UI server settings. + // Angular Universal server settings. ui: { ssl: false, host: 'localhost', @@ -16,7 +16,7 @@ module.exports = { nameSpace: '/dspace-spring-rest/api' }, cache: { - // how long should objects be cached for by default + // NOTE: how long should objects be cached for by default msToLive: 15 * 60 * 1000, // 15 minute control: 'max-age=60' // revalidate browser }, diff --git a/config/environment.test.js b/config/environment.test.js index 02f8004fde..dc8e20e4a8 100644 --- a/config/environment.test.js +++ b/config/environment.test.js @@ -1,5 +1,5 @@ module.exports = { - // Angular2 UI server settings. + // Angular Universal server settings. ui: { ssl: false, host: 'localhost', @@ -16,7 +16,7 @@ module.exports = { nameSpace: '/dspace-spring-rest/api' }, cache: { - // how long should objects be cached for by default + // NOTE: how long should objects be cached for by default msToLive: 15 * 60 * 1000, // 15 minute control: 'max-age=60' // revalidate browser },