12 lines
167 B
JavaScript
12 lines
167 B
JavaScript
|
|
module.exports = {
|
||
|
|
devServer: {
|
||
|
|
port: 8080,
|
||
|
|
proxy: {
|
||
|
|
'/api': {
|
||
|
|
target: 'http://localhost:8000',
|
||
|
|
changeOrigin: true
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|