Files
bdrp-app/unh.config.ts

22 lines
375 B
TypeScript
Raw Normal View History

2026-04-20 16:42:28 +08:00
import { defineConfig } from '@uni-helper/unh'
/**
* unh
* https://uni-helper.js.org/unh/
*/
export default defineConfig({
platform: {
// 默认平台
default: 'app',
// 平台别名
alias: {
'h5': ['w', 'h'],
'mp-weixin': 'wx',
},
},
autoGenerate: {
pages: true,
manifest: true,
},
})