Whilconn

Results 3 comments of Whilconn

@sorrycc 移动端项目依赖swiper,在ios9浏览器中白屏,使用如下配置后正常 ```ts // .umirc.ts export default { nodeModulesTransform: { type: 'none', exclude: ['swiper', 'dom7'], }, }; ``` [swiper 官网说明](https://swiperjs.com/get-started/) 如下图 ![image](https://user-images.githubusercontent.com/15317535/83964245-3eeac200-a8de-11ea-87a3-be54076ac055.png)

try this https://github.com/yarnpkg/yarn/issues/8724#issuecomment-1301928867

详细分析过程和解决方案看这里:https://juejin.cn/post/7162077789456662541 尝试以下任一方法(try any of these): 1. disable-self-update-check `$ yarn config set disable-self-update-check true` `$ yarn install` 2. set lastUpdateCheck `$ yarn config set lastUpdateCheck 1e13` `$ yarn install` 3. use...