Skip to content

Commit

Permalink
Fix cache issue post upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
JBWatenbergScality committed Aug 3, 2022
1 parent 3017e06 commit 206e15c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion webpack.common.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
const path = require('path');
const HtmlWebPackPlugin = require('html-webpack-plugin');
const {version} = require('./package.json');

module.exports = {
entry: {
zenko_ui: './src/react/App',
},
output: {
filename: 'js/[name].js',
filename: `js/[name].${version}.js`,
path: path.resolve(__dirname, 'public/assets'),
publicPath: '/',
},
Expand Down

0 comments on commit 206e15c

Please sign in to comment.