初始化项目

This commit is contained in:
2025-07-25 13:28:47 +08:00
parent 17c704b677
commit bd17095e21
9 changed files with 857 additions and 0 deletions

18
vue.config.js Normal file
View File

@@ -0,0 +1,18 @@
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true
})
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://youneed.top:10017',
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
}
}
};