-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
36 lines (34 loc) · 873 Bytes
/
vite.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import { resolve } from 'path';
const pathResolve = (dir) => {
return resolve(process.cwd(), '.', dir)
}
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
server: {
hmr: true,
port: 3001,
open: false,
proxy: {
"/lottery_service_api": {
// target: "http://192.168.22.14:3000/",
target: "http://localhost:3000/",
changeOrigin: true,
rewrite: (path) => path.replace(/^\/lottery_service_api/, '')
},
"/socket.io": {
// target: "http://192.168.22.14:3000/",
target: "http://localhost:3000/",
changeOrigin: true,
// rewrite: (path) => path.replace(/^\/lottery_service_api/, '')
}
},
},
resolve: {
alias: {
'@': pathResolve('./src')
}
}
});