mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 12:50:05 +01:00
27 lines
583 B
TypeScript
27 lines
583 B
TypeScript
import path from "path"
|
|
import tailwindcss from "@tailwindcss/vite"
|
|
import react from "@vitejs/plugin-react"
|
|
import { defineConfig } from "vite"
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react(), tailwindcss()],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
},
|
|
server: {
|
|
port: 5173,
|
|
proxy: {
|
|
"/api": "http://localhost:8080",
|
|
"/swagger": "http://localhost:8080",
|
|
"/debug/pprof": "http://localhost:8080",
|
|
},
|
|
},
|
|
build: {
|
|
outDir: "../internal/ui/dist",
|
|
emptyOutDir: true,
|
|
},
|
|
})
|