chore: initialize qiming workspace repository

This commit is contained in:
Codex
2026-05-29 14:22:48 +08:00
commit bfd67a0f2c
10750 changed files with 1885711 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
let vConsole: any = null;
export function initConsole() {
// #ifdef H5
if (process.env.NODE_ENV !== "production") {
// 使用动态导入以避免在正式打包时进行静态依赖扫描
import("vconsole").then((module) => {
const VConsole = module.default;
vConsole = new VConsole();
}).catch(err => {
console.error('vConsole 加载失败', err);
});
}
// #endif
}