Files
LCXiaoguan/ruoyi-ui/vite/plugins/unocss.ts
Admin 9f5a484689 feat: 首付分期功能实现 - 项目初始化提交
- 添加首付分期功能相关表结构和数据
- 实现首付分期策略管理
- 添加首付分期支付详情管理
- 完善项目相关功能模块
- 修复外键类型问题
- 添加相关初始化脚本和文档
2025-09-11 17:03:58 +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低版本浏览器是不支持的启动后会报错
});
};