
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
font-awesome-webpack
Advanced tools
Font awesome configuration and loading package for webpack, using font-awesome (Less).
Based on bootstrap-webpack by Scott Bleck (@bline).
To properly load font-awesome fonts, you need to configure loaders in your webpack.config.js
. Example:
module.exports = {
module: {
loaders: [
// the url-loader uses DataUrls.
// the file-loader emits files.
{ test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: "url-loader?limit=10000&mimetype=application/font-woff" },
{ test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: "file-loader" }
]
}
};
Font awesome font urls are of the format [dot][extension]?=[version-number]
, for example .woff?v=4.2.0
The Regex for font types are adjusted to support these formats. Regex also support urls ending with .woff, .ttf, .eot and .svg (Used by Bootstrap).
To use the complete font-awesome package including all styles with the default settings:
require("font-awesome-webpack");
The require
statement should be present in your application code(Entry file or any other file required in entry file) and not in webpack.config.js.
You can configurate font-awesome-webpack with two configuration files:
font-awesome.config.js
font-awesome.config.less
Add both files next to each other in your project. Then:
require("font-awesome-webpack!./path/to/font-awesome.config.js");
Or simple add it as entry point to your webpack.config.js
:
module.exports = {
entry: [
"font-awesome-webpack!./path/to/font-awesome.config.js",
"your-existing-entry-point"
]
};
font-awesome.config.js
Example:
module.exports = {
styles: {
"mixins": true,
"core": true,
"icons": true,
"larger": true,
"path": true,
}
};
font-awesome.config.less
Imported after Font-Awesome's default variables, but before anything else.
You may customize Font-Awesome here.
Example:
@fa-inverse: #eee;
@fa-border-color: #ddd;
Configure style loader in font-awesome.config.js
.
Example:
module.exports = {
styleLoader: require('extract-text-webpack-plugin').extract('style-loader', 'css-loader!less-loader'),
styles: {
...
}
};
Install extract-text-webpack-plugin
before using this configuration.
FAQs
font-awesome package for webpack
The npm package font-awesome-webpack receives a total of 1,781 weekly downloads. As such, font-awesome-webpack popularity was classified as popular.
We found that font-awesome-webpack demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.