mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-09-10 20:57:14 +08:00
10 lines
179 B
TypeScript
10 lines
179 B
TypeScript
/**
|
|
* Whether to generate package preview
|
|
* 是否生成打包报告
|
|
*/
|
|
export default {};
|
|
|
|
export function isReportMode(): boolean {
|
|
return process.env.REPORT === 'true';
|
|
}
|