Files
hms/apps/miniprogram/config/prod.ts
iven aa27c5174c docs(mp): 新增小程序全页面 HTML 原型 + UI 优化指南
- 新增 12 个核心页面原型(登录/首页/咨询/预约/商城/健康等)
- 新增医生端分包原型(核心 + 临床两个分包)
- 新增 AI 客服对话页原型
- 新增 MP UI 优化指南文档
- 更新 wiki 基础设施和小程序文档
2026-05-17 00:51:07 +08:00

24 lines
541 B
TypeScript

import type { UserConfigExport } from '@tarojs/cli';
export default {
logger: { quiet: true },
mini: {
miniCssExtractPluginOption: { ignoreOrder: true },
terserOption: {
compress: {
drop_console: true,
drop_debugger: true,
pure_funcs: ['console.log', 'console.info', 'console.debug', 'console.warn', 'console.error'],
},
format: {
comments: false,
},
},
},
h5: {
miniCssExtractPluginOption: {
ignoreOrder: true,
},
},
} satisfies UserConfigExport;