mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
11 lines
160 B
JavaScript
11 lines
160 B
JavaScript
module.exports = {
|
|
render: {
|
|
bundleRenderer: {
|
|
cache: require('lru-cache')({
|
|
max: 1000,
|
|
maxAge: 1000 * 60 * 15
|
|
})
|
|
}
|
|
}
|
|
}
|