Files
planer/frontend/vite.config.js
2026-07-22 16:12:23 +02:00

20 lines
409 B
JavaScript

import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
server: {
port: 5273,
proxy: {
'/api': 'http://localhost:8100', // Planer-Backend — NICHT 8000 (Creator!)
},
},
})