mirror of
https://github.com/silenty4ng/k5web
synced 2025-01-07 20:33:28 +00:00
9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
/**
|
|
* Whether to generate package preview
|
|
* 是否生成打包报告
|
|
*/
|
|
export default {};
|
|
|
|
export function isReportMode(): boolean {
|
|
return process.env.REPORT === 'true';
|
|
}
|