diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2018-05-29 20:33:20 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-05-29 13:33:20 +0200 |
commit | 13b60e6a146bb4717586573d63fa27f93d03a8fd (patch) | |
tree | c942de15bf2396ffd61c2a3a6e8616a96800035a /config/webpack | |
parent | 8bb74e50beb3e6602c183e59086ccebe87f96fb2 (diff) |
Use URL polyfill (#7664)
Diffstat (limited to 'config/webpack')
-rw-r--r-- | config/webpack/production.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/webpack/production.js b/config/webpack/production.js index 408c56930..1469a948f 100644 --- a/config/webpack/production.js +++ b/config/webpack/production.js @@ -8,7 +8,7 @@ const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPl const OfflinePlugin = require('offline-plugin'); const { publicPath } = require('./configuration.js'); const path = require('path'); -const { URL } = require('url'); +const { URL } = require('whatwg-url'); let compressionAlgorithm; try { |