app.config.ts 339 B

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