Skip to content

Commit bf0e3d7

Browse files
authored
Remove obsolete workaround (#74)
1 parent f7ecac7 commit bf0e3d7

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

scripts/webpack.client.js

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ module.exports = (dirname, file = 'client') => ({
77
devtool: production ? false : 'source-map',
88
entry: `./src/client/client.tsx`,
99
output: {
10-
hashFunction: "xxhash64",
1110
path: path.join(dirname, 'out'),
1211
filename: `${file}.bundle.js`,
1312
publicPath: 'http://localhost:8116/',

scripts/webpack.extension.js

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ module.exports = dirname => ({
77
devtool: production ? false : 'source-map',
88
entry: './src/extension.ts',
99
output: {
10-
hashFunction: "xxhash64",
1110
path: path.join(dirname, 'out'),
1211
filename: process.argv.includes('web') ? 'extension.web.js' : 'extension.js',
1312
libraryTarget: 'commonjs2',

0 commit comments

Comments
 (0)