Browse Source

Fix assets failing to build with OpenSSL 3 because of deprecated hash algorithm (#17930)

Fixes #17924
closed-social-glitch-2
Claire 2 years ago
committed by GitHub
parent
commit
44b7be45f1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      config/webpack/shared.js

+ 1
- 0
config/webpack/shared.js View File

@ -37,6 +37,7 @@ module.exports = {
filename: 'js/[name]-[chunkhash].js',
chunkFilename: 'js/[name]-[chunkhash].chunk.js',
hotUpdateChunkFilename: 'js/[id]-[hash].hot-update.js',
hashFunction: 'sha256',
path: output.path,
publicPath: output.publicPath,
},

Loading…
Cancel
Save