diff --git a/frontend_nuxt/nuxt.config.ts b/frontend_nuxt/nuxt.config.ts index 100048f01..ef05410e8 100644 --- a/frontend_nuxt/nuxt.config.ts +++ b/frontend_nuxt/nuxt.config.ts @@ -88,24 +88,24 @@ export default defineNuxtConfig({ vite: { build: { // increase warning limit and split large libraries into separate chunks - chunkSizeWarningLimit: 1024, - rollupOptions: { - output: { - manualChunks(id) { - if (id.includes('node_modules')) { - if (id.includes('vditor')) { - return 'vditor' - } - if (id.includes('echarts')) { - return 'echarts' - } - if (id.includes('highlight.js')) { - return 'highlight' - } - } - }, - }, - }, + // chunkSizeWarningLimit: 1024, + // rollupOptions: { + // output: { + // manualChunks(id) { + // if (id.includes('node_modules')) { + // if (id.includes('vditor')) { + // return 'vditor' + // } + // if (id.includes('echarts')) { + // return 'echarts' + // } + // if (id.includes('highlight.js')) { + // return 'highlight' + // } + // } + // }, + // }, + // }, }, }, })