This commit is contained in:
yziiy
2025-09-03 16:53:06 +08:00
parent 8ee15b63e4
commit 4e5cd87cad
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
//api 请求路径 本地
// http://md.xscmmidi.site 正式api
// http://tmd.xscmmidi.site 测试api
const BASE_URL = "http://md.xscmmidi.site";
const BASE_URL = "https://md.xscmmidi.site";
// 前端访问域名
// tmdh.xscmmidi.site 测试
// mdh.xscmmidi.site 正式

View File

@@ -5,7 +5,7 @@ module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://md.xscmmidi.site',
target: 'https://md.xscmmidi.site',
changeOrigin: true,
pathRewrite: { '^/api': '' }
}