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

11 lines
148 B
JavaScript

module.exports = {
build: {
ssr: {
cache: require('lru-cache')({
max: 1000,
maxAge: 1000 * 60 * 15
})
}
}
}