11 lines
230 B
TypeScript
11 lines
230 B
TypeScript
// app.ts
|
|
App<IAppOption>({
|
|
globalData: {},
|
|
onLaunch() {
|
|
const envVersion = wx.getAccountInfoSync().miniProgram.envVersion
|
|
if (envVersion !== 'release') {
|
|
wx.reLaunch({ url: '/pages/tools/index' })
|
|
}
|
|
},
|
|
})
|