This commit is contained in:
wangjinlei
2023-05-18 09:48:25 +08:00
commit 7b30bde563
102 changed files with 49424 additions and 0 deletions

19
vue.config.js Normal file
View File

@@ -0,0 +1,19 @@
module.exports = {
baseUrl: './',
assetsDir: 'static',
productionSourceMap: false,
devServer: {
public: 'http://192.168.110.156:8081/' // 你自己本地的ip地址:端口号
}
// devServer: {
// proxy: {
// '/api':{
// target:'http://jsonplaceholder.typicode.com',
// changeOrigin:true,
// pathRewrite:{
// '/api':''
// }
// }
// }
// }
}