18 lines
275 B
TypeScript
18 lines
275 B
TypeScript
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
base: '/controller/',
|
|
server: {
|
|
port: 3001,
|
|
proxy: {
|
|
'/socket.io': {
|
|
target: 'http://localhost:8080',
|
|
ws: true,
|
|
},
|
|
},
|
|
},
|
|
build: {
|
|
outDir: 'dist',
|
|
},
|
|
});
|