Final integrated deployment: UI served on /frontend path, Unified Docker container

This commit is contained in:
Hamza-Ayed
2026-03-30 17:53:16 +03:00
parent c6cf956727
commit c890937181
4 changed files with 26 additions and 12 deletions

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

@@ -0,0 +1,11 @@
import { defineConfig } from 'vite';
export default defineConfig({
base: '/frontend/',
build: {
outDir: 'dist',
},
server: {
port: 5173,
},
});