mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
22 lines
300 B
JavaScript
22 lines
300 B
JavaScript
export default {
|
|
mode: 'spa',
|
|
transition: false,
|
|
render: {
|
|
http2: {
|
|
push: true
|
|
},
|
|
bundleRenderer: {
|
|
shouldPrefetch: () => true
|
|
}
|
|
},
|
|
build: {
|
|
filenames: {
|
|
app: '[name].js',
|
|
chunk: '[name].js'
|
|
}
|
|
},
|
|
plugins: [
|
|
'~/plugins/error.js'
|
|
]
|
|
}
|