init project

This commit is contained in:
2023-07-02 21:23:27 +02:00
commit 03a8a0eef5
30 changed files with 2609 additions and 0 deletions

13
vite.config.js Normal file
View File

@@ -0,0 +1,13 @@
import { defineConfig, splitVendorChunkPlugin } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [ vue(), splitVendorChunkPlugin() ],
resolve: {
vue: 'vue/dist/vue.esm-bundler.js',
},
build: {
chunkSizeWarningLimit: 2048,
},
});