I am facing an issue in my Nuxt/Vuetify
application where I cannot seem to load my custom CSS file after Vuetify
's CSS. Despite attempting to change the order in the CSS array like so:
css: [
'~/assets/style/main.scss',
'~/assets/style/app.styl'
],
...I have had no success in getting my custom CSS to load after Vuetify
's. This problem has also been discussed in a previous question on Stack Overflow, but it seems to remain unanswered, leading me to believe that the issue lies with Vuetify
and has not been addressed by the creators.
Is there another explanation for this issue, or is there a possible solution that I am missing?