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"
],
Source:stackexchange.com