add dashboard, home, login, layout, api

This commit is contained in:
2026-06-04 13:58:32 +02:00
parent fb2a7485bb
commit bf36210670
12 changed files with 497 additions and 231 deletions
+11 -2
View File
@@ -1,7 +1,16 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
})
server: {
proxy: {
// Toutes les requêtes qui commencent par /api iront vers ton FOSSBilling
'/api': {
target: 'https://web.gise.be',
changeOrigin: true,
secure: false
}
}
}
})