
- 更新 vite 配置以优化 sard-uniapp 的依赖处理 - 修改全局样式导入和组件引用路径 - 移除 wot-design-uni 相关配置和依赖 - 更新 tsconfig 和页面配置中的类型定义 - 调整布局组件中的配置提供逻辑
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
import { defineUniPages } from '@uni-helper/vite-plugin-uni-pages'
|
||
|
||
export default defineUniPages({
|
||
globalStyle: {
|
||
navigationStyle: 'default',
|
||
navigationBarTitleText: 'unibest',
|
||
navigationBarBackgroundColor: '#f8f8f8',
|
||
navigationBarTextStyle: 'black',
|
||
backgroundColor: '#FFFFFF',
|
||
},
|
||
easycom: {
|
||
autoscan: true,
|
||
custom: {
|
||
'^fg-(.*)': '@/components/fg-$1/fg-$1.vue',
|
||
'^sar-(.*)': 'sard-uniapp/components/$1/$1.vue',
|
||
'^(?!z-paging-refresh|z-paging-load-more)z-paging(.*)':
|
||
'z-paging/components/z-paging$1/z-paging$1.vue',
|
||
},
|
||
},
|
||
// 如果不需要tabBar,推荐使用 spa 模板。(pnpm create xxx -t spa)
|
||
tabBar: {
|
||
color: '#999999',
|
||
selectedColor: '#018d71',
|
||
backgroundColor: '#F8F8F8',
|
||
borderStyle: 'black',
|
||
height: '50px',
|
||
fontSize: '10px',
|
||
iconWidth: '24px',
|
||
spacing: '3px',
|
||
list: [
|
||
{
|
||
iconPath: 'static/tabbar/home.png',
|
||
selectedIconPath: 'static/tabbar/homeHL.png',
|
||
pagePath: 'pages/index/index',
|
||
text: '首页',
|
||
},
|
||
{
|
||
iconPath: 'static/tabbar/example.png',
|
||
selectedIconPath: 'static/tabbar/exampleHL.png',
|
||
pagePath: 'pages/about/about',
|
||
text: '关于',
|
||
},
|
||
{
|
||
iconPath: 'static/tabbar/personal.png',
|
||
selectedIconPath: 'static/tabbar/personalHL.png',
|
||
pagePath: 'pages/mine/index',
|
||
text: '我的',
|
||
},
|
||
],
|
||
},
|
||
})
|