nrwl / nx-labs

A collection of Nx plugins
MIT License
130 stars 48 forks source link

[Feature Request] Allow bundling of common binary assets #382

Open phal0r opened 4 months ago

phal0r commented 4 months ago

Per default no asset loader is configured for common files like .PNG, .JPG, .SVG, .GIF images.

It can be solved by simpling using the built in asset module like so:

config.module.rules.push({
    test: /\.(svg|png|jpe?g|gif)$/i,
    type: 'asset',
  })