10 lines
192 B
JavaScript
10 lines
192 B
JavaScript
module.exports = {
|
|
devServer: {
|
|
proxy: {
|
|
'/api/': {
|
|
target: 'http://localhost:3000',
|
|
changeOrigin: true
|
|
},
|
|
}
|
|
}
|
|
} |