15 lines
250 B
JavaScript
15 lines
250 B
JavaScript
module.exports = {
|
|
devServer: {
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://localhost:8088/',
|
|
changeOrigin: true
|
|
},
|
|
'/uploads': {
|
|
target: 'http://localhost:8088',
|
|
changeOrigin: true
|
|
}
|
|
}
|
|
}
|
|
};
|