I'm trying to import a css file into Nuxt, but I cant get the background color change to red.
Where I have added a css file here folder
assets/css/main.css
In the main.css file I have the follow text to test with.
body {
background-color: coral;
}
nuxt.config.js:
export default {
css: [
// Material Design Icons
'@mdi/font/css/materialdesignicons.min.css',
// Main style sheet
'@/assets/css/main.css'
],
build: {
/*
** You can extend webpack config here
*/
extend(config, ctx) { }
},
buildModules: [
// Simple usage
//'@nuxtjs/vuetify',
// With options
['@nuxtjs/vuetify', { iconfont: 'mdi' }]
]
}