12 lines
207 B
JavaScript
12 lines
207 B
JavaScript
// vue.config.js
|
|
module.exports = {
|
|
devServer: {
|
|
proxy: {
|
|
'/api': {
|
|
target: 'https://chat.qxmier.com',
|
|
changeOrigin: true,
|
|
pathRewrite: { '^/api': '' }
|
|
}
|
|
}
|
|
}
|
|
} |