nomadweb/dymini/src/app.config.ts
eric 73b0513b9c Add WeChat, Douyin, and offline XHS mini-program scaffolds.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-09-27 12:57:18 -05:00

29 lines
778 B
TypeScript

export default defineAppConfig({
pages: [
'pages/home/index',
'pages/destinations/index',
'pages/destination/index',
'pages/meetups/index',
'pages/mine/index',
],
window: {
backgroundTextStyle: 'light',
navigationBarBackgroundColor: '#0c0b12',
navigationBarTitleText: 'nomadro',
navigationBarTextStyle: 'white',
backgroundColor: '#0c0b12',
},
tabBar: {
color: '#8a8694',
selectedColor: '#f0c674',
backgroundColor: '#12111a',
borderStyle: 'black',
list: [
{ pagePath: 'pages/home/index', text: '首页' },
{ pagePath: 'pages/destinations/index', text: '目的地' },
{ pagePath: 'pages/meetups/index', text: '活动' },
{ pagePath: 'pages/mine/index', text: '我的' },
],
},
})