1
0
mirror of https://github.com/nuxt/nuxt.git synced 2025-02-24 09:28:41 +00:00
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
}