aboutsummaryrefslogtreecommitdiff
path: root/front-end/vite.config.ts
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-11-08 13:58:15 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2023-11-08 13:58:15 -0500
commitfe13cc073a5bcd409b96a5539d6fd308605f9ac2 (patch)
tree10308288693d75c9eac7ff2edb45d9f16264fbaf /front-end/vite.config.ts
parent8ae86c70aa832ce2fd1f3abab5b017e3ac2fa83e (diff)
big package updates & update some chunk splitting
Diffstat (limited to 'front-end/vite.config.ts')
-rw-r--r--front-end/vite.config.ts20
1 files changed, 17 insertions, 3 deletions
diff --git a/front-end/vite.config.ts b/front-end/vite.config.ts
index a6e7ed0..474c4b2 100644
--- a/front-end/vite.config.ts
+++ b/front-end/vite.config.ts
@@ -30,9 +30,23 @@ export default defineConfig({
plugins: [],
output: {
manualChunks: {
- vnlib: ['@vnuge/vnlib.browser'],
- cmnex: ['@vnuge/cmnext-admin'],
- }
+ util: [
+ '@vnuge/vnlib.browser',
+ '@vnuge/cmnext-admin',
+ 'jose',
+ 'universal-cookie',
+ 'base32-encode',
+ 'axios',
+ 'lodash-es',
+ 'otpauth',
+ '@vuelidate/core',
+ '@vuelidate/validators',
+ 'showdown'
+ ],
+ vuejson:[
+ 'json-editor-vue'
+ ],
+ },
}
},
},