⊗tlWpPnBHN 24 of 55 menu

Webpack Build File Names and Hash

You can specify names and hashes for assembly files at the same time:

export default { entry: { test1: './src/test1.js', test2: './src/test2.js' }, output: { filename: '[name].[contenthash].js', } };

Make three entry points. Make them collect into three files with names and hash.

enru