DEV Community

Discussion on: Webpack 5 - Asset Modules

Collapse
 
bkrmsp profile image
Bikram Singh Patel • Edited

Hi @smelukov ,

The icons are not loading after i generate my application build with npm run build. Though it works fine on debugging application with npm start

As mentioned above and in webpack documentation, i have used the following approach:

Output Path ->
assetModuleFilename: 'assets/[hash][ext]'

Module Rules ->
test: /.(png|jpg|gif|ttf|woff|eot|jpeg|svg|woff2|otf|webp)$/,
type: 'asset/resource',
generator: {
filename: 'icons/[hash][ext]'
},