Files
LCXiaoguan/LCXiaoguan-ui/vite/plugins/unocss.ts
Admin aca5fb0a44 feat: 更新分期方案初始化脚本,匹配最新表结构
- 更新表名和字段名为小写格式
- 修正字段类型以匹配实体类定义
- 新增缺失字段:scheme_type, down_payment_ratio等
- 添加索引优化查询性能
- 完善表和字段注释
2025-09-11 18:42:41 +08:00

8 lines
193 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.

import UnoCss from 'unocss/vite';
export default () => {
return UnoCss({
hmrTopLevelAwait: false // unocss默认是true低版本浏览器是不支持的启动后会报错
});
};