moyu

Results 3 comments of moyu

same error here. When use webpack dynamic `import()`, all created css is not loaded in old android 4.3 browsers, which lead to async module not resolved.

In your webpack config, add this alias: ```javascript ... resolve: { alias: { aphrodite: 'aphrodite/no-important', }, }, ... ```

Same issue. You can turn webp.enabled as false to fix this problem. loaders: [ 'image-webpack?{webp:{enabled: false}}' ] By default, image-webpack-loader will push imageminWebp into plugins. // index.js line 78 if(options.webp.enabled...