Files
mesh/client/vite.config.ts
Gilles Soulier 1d177e96a6 first
2026-01-05 13:20:54 +01:00

31 lines
577 B
TypeScript

// Created by: Claude
// Date: 2026-01-01
// Purpose: Vite configuration for Mesh client
// Refs: CLAUDE.md
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
server: {
port: 3000,
proxy: {
'/api': {
target: 'http://localhost:8000',
changeOrigin: true,
},
'/ws': {
target: 'ws://localhost:8000',
ws: true,
},
},
},
})