This commit is contained in:
GarandPLG
2024-08-28 15:35:35 +02:00
parent 7f91ea313f
commit 96650aa674
23 changed files with 4930 additions and 0 deletions

15
vite.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
server: {
host: '0.0.0.0',
port: 2001,
},
build: {
outDir: '../dist',
},
root: 'src',
plugins: [vue()],
})