14 lines
200 B
JavaScript
14 lines
200 B
JavaScript
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
server: {
|
|
port: 3000,
|
|
proxy: {
|
|
'/ws': {
|
|
target: 'ws://localhost:8080',
|
|
ws: true
|
|
}
|
|
}
|
|
}
|
|
})
|