diff --git a/webpack.common.js b/webpack.common.js index 68aa7d0b..57fdff09 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -48,5 +48,9 @@ module.exports = { }, ], }, - plugins: [new Dotenv(), new VanillaExtractPlugin(), new MiniCssExtractPlugin()], + plugins: [ + new Dotenv(), + new VanillaExtractPlugin({ identifiers: ({ hash }) => `prefix_${hash}` }), + new MiniCssExtractPlugin(), + ], };