app.config.js 787 Bytes
/*
 * @Date: 2025-06-28 10:33:00
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2026-01-29 18:17:31
 * @FilePath: /manulife-weapp/src/app.config.js
 * @Description: 小程序配置文件
 */
const pages = [
  'pages/index/index',
  'pages/auth/index',
]

if (process.env.NODE_ENV === 'development') {
  // pages.push('pages/nfcTest/index')
  // pages.push('pages/tailwindTest/index')
}

const subpackages = process.env.NODE_ENV === 'development'
  ? [
      // {
      //   root: 'pages/demo',
      //   pages: ['index'],
      // },
    ]
  : []

export default {
  pages,
  subpackages,
  window: {
    backgroundTextStyle: 'light',
    navigationBarBackgroundColor: '#fff',
    navigationBarTitleText: '西园寺预约',
    navigationBarTextStyle: 'black',
  },
}