Move vuetify styles to css file when server side rendering

二次信任 提交于 2021-01-29 21:32:55

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!