You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
856 B
TypeScript
30 lines
856 B
TypeScript
|
6 days ago
|
/*
|
||
|
|
* @Author: chris
|
||
|
|
* @Date: 2025-10-20 10:45:46
|
||
|
|
* @LastEditors: chris
|
||
|
|
* @LastEditTime: 2025-10-20 11:40:32
|
||
|
|
*/
|
||
|
|
import { defineUniPages } from '@uni-helper/vite-plugin-uni-pages'
|
||
|
|
import { tabBar } from './src/tabbar/config'
|
||
|
|
|
||
|
|
export default defineUniPages({
|
||
|
|
globalStyle: {
|
||
|
|
navigationStyle: 'default',
|
||
|
|
navigationBarTitleText: '果园',
|
||
|
|
navigationBarBackgroundColor: '#f8f8f8',
|
||
|
|
navigationBarTextStyle: 'black',
|
||
|
|
backgroundColor: '#FFFFFF',
|
||
|
|
},
|
||
|
|
easycom: {
|
||
|
|
autoscan: true,
|
||
|
|
custom: {
|
||
|
|
'^fg-(.*)': '@/components/fg-$1/fg-$1.vue',
|
||
|
|
'^wd-(.*)': 'wot-design-uni/components/wd-$1/wd-$1.vue',
|
||
|
|
'^(?!z-paging-refresh|z-paging-load-more)z-paging(.*)':
|
||
|
|
'z-paging/components/z-paging$1/z-paging$1.vue',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
// tabbar 的配置统一在 “./src/tabbar/config.ts” 文件中
|
||
|
|
tabBar: tabBar as any,
|
||
|
|
})
|