
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
asset-config-webpack-plugin
Advanced tools
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.
npm i --save-dev asset-config-webpack-plugin
The asset-config-webpack-plugin
is just a small convince wrapper arround the image-config-plugin
and the font-config-plugin
npm packages.
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
.
const FontConfigWebpackPlugin = require('font-config-webpack-plugin');
const ImageConfigWebpackPlugin = require('image-config-webpack-plugin');
module.exports = {
plugins: [
new FontConfigWebpackPlugin(),
new ImageConfigWebpackPlugin(),
]
}
FAQs
Preset for font and image webpack loader configurations
The npm package asset-config-webpack-plugin receives a total of 19 weekly downloads. As such, asset-config-webpack-plugin popularity was classified as not popular.
We found that asset-config-webpack-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.