Base Frontend

This commit is contained in:
2025-10-13 01:20:15 +02:00
parent 74d7f60dfc
commit ea043234a3
14 changed files with 3027 additions and 0 deletions

11
vite.config.js Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig, loadEnv } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
host: '0.0.0.0',
port: 5173,
strictPort: true
}
})