2024-06-25 10:27:51 +08:00
|
|
|
import { defineUniPages } from '@uni-helper/vite-plugin-uni-pages'
|
|
|
|
|
|
|
|
export default defineUniPages({
|
|
|
|
// 你也可以定义 pages 字段,它具有最高的优先级。
|
|
|
|
pages: [],
|
|
|
|
globalStyle: {
|
2024-07-08 15:13:35 +08:00
|
|
|
navigationStyle: 'default',
|
2024-06-25 10:27:51 +08:00
|
|
|
navigationBarTextStyle: 'black',
|
|
|
|
navigationBarTitleText: '首页',
|
2024-07-31 17:37:15 +08:00
|
|
|
enablePullDownRefresh:false
|
2024-06-25 10:27:51 +08:00
|
|
|
},
|
|
|
|
easycom: {
|
|
|
|
autoscan: true,
|
|
|
|
custom: {
|
|
|
|
"^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue",
|
|
|
|
"^wd-(.*)": "wot-design-uni/components/wd-$1/wd-$1.vue"
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|