-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
32 lines (29 loc) · 944 Bytes
/
vue.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
module.exports = {
devServer : {
// 벡엔드의 주소를 짧게 사용하기 위해서
// http://localhost:3000/board/select => /board/select
proxy : {
'/board':{
target : 'http://localhost:3000',
changeOrigin : true,
logLevel : 'debug'
},
'/member':{
target : 'http://localhost:3000',
changeOrigin : true,
logLevel : 'debug'
},
'/seller':{
target : 'http://localhost:3000',
changeOrigin : true,
logLevel : 'debug'
},
'/shop':{
target : 'http://localhost:3000',
changeOrigin : true,
logLevel : 'debug'
}
},
port : 8080
},
}