From 0ddbccf7e6303f3b524628e210bdba5654d5c421 Mon Sep 17 00:00:00 2001 From: Yamagishi Kazutoshi Date: Sat, 15 Sep 2018 00:59:48 +0900 Subject: Upgrade Babel to version 7.0.0 (#5925) --- config/webpack/loaders/babel.js | 1 - config/webpack/production.js | 1 - 2 files changed, 2 deletions(-) (limited to 'config/webpack') diff --git a/config/webpack/loaders/babel.js b/config/webpack/loaders/babel.js index e17d2fa70..7509617fd 100644 --- a/config/webpack/loaders/babel.js +++ b/config/webpack/loaders/babel.js @@ -7,7 +7,6 @@ module.exports = { exclude: /node_modules/, loader: 'babel-loader', options: { - forceEnv: env, cacheDirectory: env === 'development' ? false : resolve(__dirname, '..', '..', '..', 'tmp', 'cache', 'babel-loader'), }, }; diff --git a/config/webpack/production.js b/config/webpack/production.js index 27a78108b..aca37059e 100644 --- a/config/webpack/production.js +++ b/config/webpack/production.js @@ -69,7 +69,6 @@ module.exports = merge(sharedConfig, { plugins: [ new CompressionPlugin({ - asset: '[path].gz[query]', algorithm: compressionAlgorithm, test: /\.(js|css|html|json|ico|svg|eot|otf|ttf)$/, }), -- cgit