mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
11 lines
158 B
JavaScript
11 lines
158 B
JavaScript
export default {
|
|
render: {
|
|
bundleRenderer: {
|
|
cache: require('lru-cache')({
|
|
max: 1000,
|
|
maxAge: 1000 * 60 * 15
|
|
})
|
|
}
|
|
}
|
|
}
|