pages.config.ts 633 B

123456789101112131415161718192021
  1. import { defineUniPages } from '@uni-helper/vite-plugin-uni-pages'
  2. export default defineUniPages({
  3. pages: [],
  4. globalStyle: {
  5. backgroundColor: '@bgColor',
  6. backgroundColorBottom: '@bgColorBottom',
  7. backgroundColorTop: '@bgColorTop',
  8. backgroundTextStyle: '@bgTxtStyle',
  9. navigationBarBackgroundColor: '#000000',
  10. navigationBarTextStyle: '@navTxtStyle',
  11. navigationBarTitleText: 'Vitesse-Uni',
  12. navigationStyle: 'custom',
  13. },
  14. // tabBar: {
  15. // backgroundColor: "@tabBgColor",
  16. // borderStyle: "@tabBorderStyle",
  17. // color: "@tabFontColor",
  18. // selectedColor: "@tabSelectedColor",
  19. // },
  20. })