From ce4499e71de9dd8bb9214e7c17bae73696c93357 Mon Sep 17 00:00:00 2001 From: nextgensparx Date: Tue, 21 Aug 2018 21:45:31 +0200 Subject: [PATCH] Disable hashed URL params The hashes were causing issues in the zipped output. Since the hashes were only being added when creating the zipped output, they have been removed entirely. --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 83b137c..122b063 100644 --- a/index.js +++ b/index.js @@ -29,7 +29,7 @@ module.exports = (api, options) => { api.configureWebpack((webpackConfig) => { webpackConfig.output.filename = '[name].js' - webpackConfig.output.chunkFilename = 'js/[id].[name].js?[hash:8]' + webpackConfig.output.chunkFilename = 'js/[id].[name].js' webpackConfig.node.global = false if (isProduction) {