14 lines
214 B
JavaScript
14 lines
214 B
JavaScript
module.exports = {
|
|
devServer: {
|
|
proxy: {
|
|
"/api": {
|
|
target: "http://127.0.0.1:3001/",
|
|
changeOrigin: true,
|
|
pathRewrite: {
|
|
"^/api": "",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|