11 lines
252 B
JavaScript
11 lines
252 B
JavaScript
|
|
import gulpError from './utils/gulpError';
|
||
|
|
App({
|
||
|
|
onShow() {
|
||
|
|
if (gulpError !== 'gulpErrorPlaceHolder') {
|
||
|
|
wx.redirectTo({
|
||
|
|
url: `/pages/gulp-error/index?gulpError=${gulpError}`,
|
||
|
|
});
|
||
|
|
}
|
||
|
|
},
|
||
|
|
});
|