Files
qncV3uni-app/unh.config.js
2026-02-06 17:34:00 +08:00

22 lines
374 B
JavaScript
Raw Permalink 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 { defineConfig } from '@uni-helper/unh'
/**
* unh 配置文件
* 更多配置请参考https://uni-helper.js.org/unh/
*/
export default defineConfig({
platform: {
// 默认平台
default: 'h5',
// 平台别名
alias: {
'h5': ['w', 'h'],
'mp-weixin': 'wx',
},
},
autoGenerate: {
pages: true,
manifest: true,
},
})