13 lines
183 B
JavaScript
13 lines
183 B
JavaScript
module.exports = {
|
|
devServer: {
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://localhost:8000',
|
|
changeOrigin: true
|
|
}
|
|
}
|
|
},
|
|
transpileDependencies: true
|
|
}
|
|
|