Hi I have the following in my webpack prod config:
output: {
filename: '[name].[contenthash].js',
publicPath: '/container/latest/'
}
but the output does not include the content hash. My file is always named as main.js
not main.[contenthash].js
I'm using webpack version 5.59.1
.
I can't figure out the problem.