head: {
css: [
'~/assets/style/app.styl',
'~/assets/style/main.css'
],
}
...
// for nuxt 3
export default {
css: [
// Load a Node.js module directly (here it's a Sass file)
'bulma',
// CSS file in the project
'@/assets/css/main.css',
// SCSS file in the project
'@/assets/css/main.scss'
]
}