|
1
|
const defaultConfig = require("@wordpress/scripts/config/webpack.config"); |
|
2
|
|
|
3
|
module.exports = { |
|
4
|
...defaultConfig, |
|
5
|
output: { |
|
6
|
...defaultConfig.output, |
|
7
|
filename: '[name].[contenthash].js', |
|
8
|
chunkFilename: '[name].[contenthash].js', |
|
9
|
} |
|
10
|
};
|