-
Notifications
You must be signed in to change notification settings - Fork 2
/
vite.config.ts
64 lines (61 loc) · 1.52 KB
/
vite.config.ts
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
import mkcert from 'vite-plugin-mkcert';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
react(),
mkcert({
force: false,
})
],
resolve: {
alias: {
'@images': '/src/assets/images',
'@components': '/src/components',
'@utils': '/src/utils',
'@apis': '/src/apis',
'@pages': '/src/pages',
'@store': '/src/store',
'@hooks': '/src/hooks',
}
},
server: {
https:{
key: 'cert/localhost-key.pem',
cert: 'cert/localhost.pem',
},
proxy: {
'/auth': {
target: 'https://itpick.store',
changeOrigin: true,
secure: false,
rewrite: (path) => path.replace(/^\/auth/, '/auth')
},
'/user': {
target: 'https://itpick.store',
changeOrigin: true,
secure: false,
rewrite: (path) => path.replace(/^\/user/, '/user')
},
'/rank': {
target: 'https://itpick.store',
changeOrigin: true,
secure: false,
rewrite: (path) => path.replace(/^\/rank/, '/rank')
},
'/keyword': {
target: 'https://itpick.store',
changeOrigin: true,
secure: false,
rewrite: (path) => path.replace(/^\/keyword/, '/keyword')
},
'/debate': {
target: 'https://itpick.store',
changeOrigin: true,
secure: false,
rewrite: (path) => path.replace(/^\/debate/, '/debate')
},
},
},
})