Skip to content

Commit

Permalink
This commit has no message. It’s a mystery.
Browse files Browse the repository at this point in the history
  • Loading branch information
hgosansn committed Aug 18, 2024
1 parent 634d6ea commit ca02a10
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion webpack.prod.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
const { merge } = require('webpack-merge');
const common = require('./webpack.config.js');
const TerserPlugin = require('terser-webpack-plugin');
const env = require('./environment');
const path = require('path');

prod = true;
Expand All @@ -20,9 +21,9 @@ module.exports = merge(common, {
],
},
output: {
...common.output,
filename: '[name].[chunkhash].js', // Enable cache-busting
path: path.resolve(__dirname, 'dist'),
clean: true,
publicPath: env.publicPath,
},
});

0 comments on commit ca02a10

Please sign in to comment.