This commit is contained in:
2025-05-28 09:39:18 +08:00
commit 2907b67bba
235 changed files with 22804 additions and 0 deletions

9
config/utils/index.ts Normal file
View File

@@ -0,0 +1,9 @@
/**
* Whether to generate package preview
* 是否生成打包报告
*/
export default {};
export function isReportMode(): boolean {
return process.env.REPORT === 'true';
}