20 lines
380 B
JavaScript
20 lines
380 B
JavaScript
// @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()]
|
|
}
|
|
}); |