app.config.ts 393 B

12345678910111213141516
  1. export default defineAppConfig({
  2. pages: [
  3. 'pages/index/index',
  4. 'pages/explore/index',
  5. 'pages/profile/index',
  6. 'pages/login/index',
  7. 'pages/register/index'
  8. ],
  9. window: {
  10. backgroundTextStyle: 'light',
  11. navigationBarBackgroundColor: '#1890ff',
  12. navigationBarTitleText: '小程序Starter',
  13. navigationBarTextStyle: 'white',
  14. navigationStyle: 'custom'
  15. }
  16. })