import { defineUniPages } from '@uni-helper/vite-plugin-uni-pages' export default defineUniPages({ pages: [], globalStyle: { backgroundColor: '@bgColor', backgroundColorBottom: '@bgColorBottom', backgroundColorTop: '@bgColorTop', backgroundTextStyle: '@bgTxtStyle', navigationBarBackgroundColor: '#000000', navigationBarTextStyle: '@navTxtStyle', navigationBarTitleText: 'Vitesse-Uni', navigationStyle: 'custom', }, tabBar: { backgroundColor: '@tabBgColor', borderStyle: '@tabBorderStyle', color: '@tabFontColor', selectedColor: '@tabSelectedColor', list: [ { pagePath: 'pages/index', text: '้ฆ–้กต', iconPath: 'static/vite.png', selectedIconPath: 'static/vite.png', }, { pagePath: 'pages/hi', text: 'ๆˆ‘็š„', iconPath: 'static/vite.png', selectedIconPath: 'static/vite.png', }, { pagePath: 'pages/hi', text: 'about', iconPath: 'static/vite.png', selectedIconPath: 'static/vite.png', }, ], }, })