Files
TakeoutSaaS.TenantUI/apps/web-antd/src/mock/index.ts

12 lines
448 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// Mock 数据入口,仅在开发环境下使用。
// 默认关闭商品相关 mock需要时可通过环境变量显式开启。
if (import.meta.env.VITE_MOCK_PRODUCT === 'true') {
void import('./product');
console.warn('[Mock] 已启用商品列表 Mock 数据');
}
if (import.meta.env.VITE_MOCK_PRODUCT_EXTENSIONS === 'true') {
void import('./product-extensions');
console.warn('[Mock] 已启用商品扩展模块 Mock 数据');
}