hermes/frontend/vite.config.ts
Nico ccee249618 v0.6.42: Hermes chat UI — Vue3/TS/Vite, audio STT/TTS, sidebar rail, MCP event loop
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-30 19:35:10 +02:00

35 lines
692 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: 8443,
hmr: {
host: 'dev.jqxp.org',
protocol: 'wss',
clientPort: 443,
},
proxy: {
'/ws': {
target: 'ws://localhost:3003',
ws: true,
rewriteWsOrigin: true,
},
'/api': {
target: 'http://localhost:3003',
changeOrigin: true,
},
},
},
build: {
outDir: 'dist',
},
})