Files
whatshooked/web/vite.config.ts
Hein 5ca375fd58
Some checks failed
CI / Test (1.23) (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Build (push) Has been cancelled
CI / Test (1.22) (push) Has been cancelled
feat(serverembed): add initial HTML and SVG assets
* Create index.html for the web application entry point
* Add vite.svg as a favicon
* Update frontend.go to embed all files in the dist directory
* Modify vite.config.ts to set output directory for builds
2026-02-20 16:45:30 +02:00

26 lines
502 B
TypeScript

import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
base: "/ui/",
build: {
outDir: "../pkg/serverembed/dist",
emptyOutDir: true,
},
server: {
port: 3000,
proxy: {
"/api": {
target: "http://localhost:8080",
changeOrigin: true,
},
"/health": {
target: "http://localhost:8080",
changeOrigin: true,
},
},
},
});