问题
I've been using vuetify as frontend, but since I moved to nuxt. All styles are displayed within html page.
Is there a way to move vuetify styles to separate css files?
回答1:
You need to use extractCSS property from nuxt.config
export default {
build :{
extractCSS: true
}
}
来源:https://stackoverflow.com/questions/55936112/move-vuetify-styles-to-css-file-when-server-side-rendering