17 lines
477 B
TypeScript
17 lines
477 B
TypeScript
import { defineUniPages } from '@uni-helper/vite-plugin-uni-pages'
|
|
|
|
export default defineUniPages({
|
|
pages: [],
|
|
globalStyle: {
|
|
backgroundColor: '@bgColor',
|
|
backgroundColorBottom: '@bgColorBottom',
|
|
backgroundColorTop: '@bgColorTop',
|
|
backgroundTextStyle: '@bgTxtStyle',
|
|
navigationBarBackgroundColor: '#000000',
|
|
navigationBarTextStyle: '@navTxtStyle',
|
|
navigationBarTitleText: 'Uni Creator',
|
|
navigationStyle: 'custom',
|
|
},
|
|
subPackages: [],
|
|
})
|