Migrate frontend from Thymeleaf and basic JS to Vue.js application

This commit is contained in:
2025-07-19 20:30:53 +02:00
parent dc6314384d
commit 84cbf9be89
34 changed files with 1988 additions and 0 deletions

15
frontend/vite.config.js Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from "vite"
import vue from "@vitejs/plugin-vue"
export default defineConfig({
plugins: [vue()],
server: {
port: 3000,
proxy: {
"/api": {
target: "http://localhost:8080",
changeOrigin: true,
},
},
},
})