addition of new dashboard
This commit is contained in:
20
frontend/astro.config.mjs
Normal file
20
frontend/astro.config.mjs
Normal 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()]
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user