mirror of
https://github.com/vitejs/vite.git
synced 2024-11-21 22:59:10 +00:00
14 lines
214 B
JavaScript
14 lines
214 B
JavaScript
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
server: {
|
|
port: 9616,
|
|
proxy: {
|
|
'/anotherApp': {
|
|
target: 'http://localhost:9617',
|
|
ws: true,
|
|
},
|
|
},
|
|
},
|
|
})
|