ee6e581b9d
ci/woodpecker/tag/docker Pipeline was successful
Serves the UI under /ui instead of /. This pairs with the argocd route simplification (argocd-apps#201) where /ui → UI service and everything else → API.
- Vite: `base` set from `BASE_PATH` env var at build time
- React Router: `basename` set from injected `__BASE_PATH__`
- Nginx: location block uses `${BASE_PATH}`, substituted by sed at build
- Dockerfile: `ARG BASE_PATH=/` (default preserves existing behavior)
- Woodpecker: passes `BASE_PATH=/ui` to docker-web build
Tested: assets serve at `/ui/assets/...`, SPA routing works at `/ui/remotes`, etc.
Reviewed-on: #58
Co-authored-by: Ben Vincent <ben@unkin.net>
Co-committed-by: Ben Vincent <ben@unkin.net>
21 lines
461 B
TypeScript
21 lines
461 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
const basePath = process.env.BASE_PATH || '/'
|
|
|
|
export default defineConfig({
|
|
base: basePath,
|
|
plugins: [react()],
|
|
server: {
|
|
proxy: {
|
|
'/api': 'http://localhost:8000',
|
|
'/v2': 'http://localhost:8000',
|
|
'/health': 'http://localhost:8000',
|
|
'/metrics': 'http://localhost:8000',
|
|
},
|
|
},
|
|
define: {
|
|
'__BASE_PATH__': JSON.stringify(basePath),
|
|
},
|
|
})
|