12 lines
206 B
JavaScript
12 lines
206 B
JavaScript
// vue.config.js
|
|
module.exports = {
|
|
devServer: {
|
|
proxy: {
|
|
'/api': {
|
|
target: 'https://my.qixing2.top',
|
|
changeOrigin: true,
|
|
pathRewrite: { '^/api': '' }
|
|
}
|
|
}
|
|
}
|
|
} |