addition of new dashboard

This commit is contained in:
2026-08-20 15:08:32 +00:00
parent 0622018d95
commit bf59249ed7
161 changed files with 13170 additions and 119 deletions

20
frontend/astro.config.mjs Normal file
View File

@@ -0,0 +1,20 @@
// @ts-check
import { defineConfig } from 'astro/config';
import tailwindcss from '@tailwindcss/vite';
// https://astro.build/config
export default defineConfig({
vite: {
server: {
proxy: {
'/api': {
target: "http://localhost:9090",
changeOrigin: true,
secure: false
}
}
},
plugins: [tailwindcss()]
}
});