Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
font-config-webpack-plugin
Advanced tools
Creating a webpack loader configurations can be quite time consuming.
The font-config-webpack-plugin
is part of the common-config-webpack-plugin
suite which tries to provide best practices for the most common loader requirements.
If no mode is explicitly set for the plugin the configuration will adjust depending on your webpack mode setting.
⚙️development mode webpack.config.js
⚙️production mode webpack.config.js
npm i --save-dev font-config-webpack-plugin
In most projects you will need to set up project specific options but you can still use all or some common-config-webpack-plugin parts.
const FontConfigWebpackPlugin = require('font-config-webpack-plugin');
module.exports = {
plugins: [new FontConfigWebpackPlugin()],
};
By default the font-config-webpack-plugin
adds a md5 hash of the font files content to the file name
to allow long-term-caching.
For example: static/media/OpenSans-Regular-webfont.c8ffdeb3.woff
To change the file name path an option called name
can be passed to the font-config-webpack-plugin
.
The name
option supports different placeholders.
const FontConfigWebpackPlugin = require('font-config-webpack-plugin');
module.exports = {
plugins: [
new FontConfigWebpackPlugin({
name: 'fonts/[name].[ext]',
}),
],
};
FAQs
Preset for font webpack configuration
We found that font-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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.