Initial commit: AMS Frontend - Vue 3 + PrimeVue

This commit is contained in:
FluxKit
2026-02-19 14:03:01 +00:00
commit 263d52141d
50 changed files with 20254 additions and 0 deletions

9
vite.config.ts Normal file
View File

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