Skip to content

Commit ce4499e

Browse files
committed
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.
1 parent 0419eed commit ce4499e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module.exports = (api, options) => {
2929

3030
api.configureWebpack((webpackConfig) => {
3131
webpackConfig.output.filename = '[name].js'
32-
webpackConfig.output.chunkFilename = 'js/[id].[name].js?[hash:8]'
32+
webpackConfig.output.chunkFilename = 'js/[id].[name].js'
3333
webpackConfig.node.global = false
3434

3535
if (isProduction) {

0 commit comments

Comments
 (0)