Slim sidebar (Home, nyx, Impressum, Datenschutz, Sign-in/User), global AppToolbar for system features, /agents→/nyx rename, agent auto-select, OIDC user name extraction from id_token, theme-consistent content pages, removed DevView and old system panel. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
33 lines
676 B
TypeScript
33 lines
676 B
TypeScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import tailwindcss from '@tailwindcss/vite'
|
|
const buildId = Date.now().toString(36);
|
|
|
|
export default defineConfig({
|
|
define: {
|
|
__BUILD__: JSON.stringify(buildId),
|
|
},
|
|
plugins: [tailwindcss(), vue()],
|
|
server: {
|
|
host: '0.0.0.0',
|
|
port: 5173,
|
|
proxy: {
|
|
'/ws': {
|
|
target: 'wss://assay.loop42.de',
|
|
ws: true,
|
|
rewriteWsOrigin: true,
|
|
secure: true,
|
|
changeOrigin: true,
|
|
},
|
|
'/api': {
|
|
target: 'https://assay.loop42.de',
|
|
changeOrigin: true,
|
|
secure: true,
|
|
},
|
|
},
|
|
},
|
|
build: {
|
|
outDir: 'dist',
|
|
},
|
|
})
|