feat(serverembed): add initial HTML and SVG assets
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

* 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
This commit is contained in:
Hein
2026-02-20 16:45:30 +02:00
parent 7d6f99b3b3
commit 5ca375fd58
8 changed files with 142 additions and 41 deletions

View File

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