Preset for font and image webpack loader configurations
npm install asset-config-webpack-plugin





Creating a webpack _loader_ configurations can be quite time consuming.
The asset-config-webpack-plugin is part of the common-config-webpack-plugin suite which tries to provide best practices for the most common loader requirements.
``bash`
npm i --save-dev asset-config-webpack-plugin
The asset-config-webpack-plugin is just a small convince wrapper around the image-config-plugin and the font-config-plugin npm packages.
`js`
const AssetConfigWebpackPlugin = require('asset-config-webpack-plugin');
module.exports = {
plugins: [new AssetConfigWebpackPlugin()],
};
For more control please use the image-config-plugin and/or the font-config-plugin instead of the asset-config-webpack-plugin.
`js
const FontConfigWebpackPlugin = require('font-config-webpack-plugin');
const ImageConfigWebpackPlugin = require('image-config-webpack-plugin');
module.exports = {
plugins: [
new FontConfigWebpackPlugin(),
new ImageConfigWebpackPlugin(),
],
};
``