1
0
mirror of https://github.com/nuxt/nuxt.git synced 2024-12-18 18:27:13 +00:00
Nuxt/examples/cached-components/nuxt.config.js
2018-03-16 19:42:06 +03:30

11 lines
158 B
JavaScript

export default {
render: {
bundleRenderer: {
cache: require('lru-cache')({
max: 1000,
maxAge: 1000 * 60 * 15
})
}
}
}