I have simple VueJs application with webpack and in webpack.prod.conf.js file, I have enabled productionGzip which generates .gz file for each of the chunks in dist folder.
productionGzip: true,
productionGzipExtensions: ['js', 'css'],
When I am loading my application in browser, I can see .js files are loaded but I can not see any tag with content-encoding: gzip or anything which indicates .gz files has taken effects. All .js files loaded in network tab of browser are having Content-Type: application/javascript
How to verify if .gz files are loading in chrome browser?