tianji/src/client/vite.config.ts

25 lines
477 B
TypeScript
Raw Normal View History

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// https://vitejs.dev/config/
export default defineConfig({
root: __dirname,
plugins: [react()],
build: {
outDir: '../server/public',
},
clearScreen: false,
server: {
proxy: {
'/socket.io': {
target: 'ws://localhost:12345',
changeOrigin: true,
ws: true,
},
'/trpc': {
target: 'http://localhost:12345',
},
},
},
});