We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f82637e commit d068a4cCopy full SHA for d068a4c
.vitepress/config.ts
@@ -641,7 +641,7 @@ export default defineConfigWithTheme<Config>({
641
}
642
},
643
build: {
644
- minify: 'terser',
+ minify: false, //'terser',
645
chunkSizeWarningLimit: Infinity,
646
rollupOptions: {
647
output: {
@@ -653,7 +653,17 @@ export default defineConfigWithTheme<Config>({
653
if (id.includes('dynamics.js')) {
654
return 'dynamics'
655
656
- return moveToVendor(id, ctx)
+ if (id.includes('plugin-vue:export-helper')) {
657
+ return 'framework'
658
+ }
659
+ const isVendor = moveToVendor(id, ctx)
660
+ if (isVendor) {
661
+ if (/@vue\/(runtime|shared|reactivity)/.test(id)) {
662
663
+ } else {
664
+ return 'app'
665
666
667
668
669
0 commit comments