web/satellite: browser caching bug fixed

Change-Id: I5b97a90d28c754cc893852909dcc87290a739f59
This commit is contained in:
VitaliiShpital 2020-03-19 18:40:41 +02:00 committed by Vitalii Shpital
parent e258de518c
commit 859fce3af7

View File

@ -25,8 +25,8 @@ module.exports = {
],
},
chainWebpack: config => {
config.output.chunkFilename(`js/vendors_[name].js`);
config.output.filename(`js/app.js`);
config.output.chunkFilename(`js/vendors_[name]_[hash].js`);
config.output.filename(`js/app_[hash].js`);
config.resolve.alias
.set('@', path.resolve('src'));