mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
21 lines
448 B
JavaScript
21 lines
448 B
JavaScript
module.exports = {
|
|
head: {
|
|
meta: [
|
|
{ charset: 'utf-8' },
|
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
|
|
{ hid: 'description', name: 'description', content: 'Meta description' }
|
|
]
|
|
},
|
|
css: [
|
|
'bulma/css/bulma.css',
|
|
'~/css/main.css'
|
|
],
|
|
render: {
|
|
bundleRenderer: {
|
|
shouldPreload: (file, type) => {
|
|
return ['script', 'style', 'font'].includes(type)
|
|
}
|
|
}
|
|
}
|
|
}
|