my current kotlin js always generates `reactJs.js`...
# javascript
r
my current kotlin js always generates
reactJs.js
is it possible to change config to get
reactJs.somerandomhash.js
?
t
Create
webpack.config.d/patch.js
with following content:
config.output.filename = '[name].[contenthash].js'
r
@turansky but how insert this filename into
index.html
?
t
AFAIK Your can use html webpack plugin for this goal
r
@turansky thank you, will try