import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' import { fileURLToPath, URL } from 'node:url' // https://vite.dev/config/ export default defineConfig({ plugins: [vue()], base: '/app/', // Base path pour le déploiement resolve: { alias: { '@': fileURLToPath(new URL('./src', import.meta.url)) } }, server: { proxy: { '/api/webrenderer/ws': { target: 'ws://localhost:8080', ws: true, changeOrigin: true, }, '/api': { target: 'http://localhost:8080', changeOrigin: true, }, '/audio': { target: 'http://localhost:8080', changeOrigin: true, }, }, }, })