Files
WEBtomaste/Atomaste Reference/public_html/wp-content/plugins/burst-statistics/settings/webpack.prod.js

11 lines
251 B
JavaScript

const defaultConfig = require( '@wordpress/scripts/config/webpack.config' );
module.exports = {
...defaultConfig,
output: {
...defaultConfig.output,
filename: '[name].[contenthash].js',
chunkFilename: '[name].[contenthash].js'
}
};