Nuxt/examples/cached-components/nuxt.config.js

11 lines
148 B
JavaScript
Raw Normal View History

2016-12-01 18:01:59 +00:00
module.exports = {
build: {
ssr: {
cache: require('lru-cache')({
max: 1000,
maxAge: 1000 * 60 * 15
})
}
}
2016-12-01 18:01:59 +00:00
}