Files
relay/client/vite.config.ts

29 lines
594 B
TypeScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import path from 'path';
// https://vitejs.dev/config/
export default defineConfig({
server: {
proxy: {
'/api': {
target: 'http://localhost:3000',
changeOrigin: true,
},
'/socket.io': {
target: 'ws://localhost:3000',
ws: true,
},
'/attachments': {
target: 'http://localhost:3000',
changeOrigin: true,
},
},
},
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
});