我们正在使用Nuxtjs 2.3.4和VuetifyJS 1.2.10。
每个页面上都有大量来自VuetifyJs的未使用CSS和js。
如何从每个页面中删除VuetifyJs的不需要的CSS / js?
任何人都可以帮忙!
答案 0 :(得分:0)
您可以为此使用vuetify loader
在您的nuxt.config.js中
import VuetifyLoaderPlugin from 'vuetify-loader/lib/plugin'
...
build: {
transpile: ['vuetify/lib'],
plugins: [new VuetifyLoaderPlugin()],
在插件中
import Vuetify from 'vuetify/lib'
Vue.use(Vuetify)
或者您可以仅将nuxt-vuetify模块与treehake选项一起使用