fix(miniprogram): 修复 project.config.json 配置
Some checks failed
CI / rust-check (push) Has been cancelled
CI / rust-test (push) Has been cancelled
CI / frontend-build (push) Has been cancelled
CI / security-audit (push) Has been cancelled

添加 miniprogramRoot: dist/ 指向 Taro 编译产物目录,
修复微信开发者工具无法加载小程序代码的问题。
更新 appid 为真实值,启用生产构建选项。
This commit is contained in:
iven
2026-04-24 17:47:29 +08:00
parent b4e8399194
commit 81cc84e4b2

View File

@@ -1,16 +1,14 @@
{
"appid": "wx20f4ef9cc2ec66c5",
"miniprogramRoot": "dist/",
"projectname": "hms-miniprogram",
"description": "HMS 健康管理平台患者小程序",
"appid": "touristappid",
"compileType": "miniprogram",
"setting": {
"autoAudits": false,
"urlCheck": false,
"es6": false,
"es6": true,
"enhance": true,
"compileHotReLoad": false,
"postcss": false,
"minified": false,
"bundle": false
},
"compileType": "miniprogram"
"compileHotReLoad": true,
"postcss": true,
"minified": true
}
}