[Vuejs]-Babel-import-plugin doesn't seem to reduce ant-design-vue size after use nuxt build config

0👍

i just got this fixed and reduced the size drastically to this by only removing the ant-design plugin from the nuxt config.

Initially my plug look something like this

 plugins: [
    "@/plugins/antd-ui",
    { src: "@/plugins/vue-carousel", ssr: false }
    // "@/plugins/axios"
  ],

Then I removed the plugin to have something like this

 plugins: [
    { src: "@/plugins/vue-carousel", ssr: false }
    // "@/plugins/axios"
  ],

Now i have this minimal size enter image description here

Leave a comment