初始化my文件

This commit is contained in:
yziiy
2025-09-26 14:50:30 +08:00
parent 29c69f49fa
commit cae9c4c8fc
1497 changed files with 248229 additions and 0 deletions

12
vue.config.js Normal file
View File

@@ -0,0 +1,12 @@
// vue.config.js
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'https://my.qixing2.top',
changeOrigin: true,
pathRewrite: { '^/api': '' }
}
}
}
}