
Security News
Open Source Maintainers Demand Ability to Block Copilot-Generated Issues and PRs
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
font-awesome-sass-loader
Advanced tools
Font Awesome configuration and loading package for webpack, using font-awesome (Sass).
Based on font-awesome-webpack by Gowrav Shekar (@gowravshekar) and bootstrap-sass-loader by Shaka Code (@justin808).
The version 2 of font-awesome-sass-loader is only compatible with webpack v2. If you use the version 1 of webpack, please check the v1 branch.
To properly load font-awesome fonts, you need to configure loaders in your webpack.config.js
. Example:
module.exports = {
module: {
rules: [
// the url-loader uses DataUrls.
// the file-loader emits files.
{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
use: [
{
loader: 'url-loader',
options: {
limit: 10000,
mimetype: 'application/font-woff'
}
}
]
},
{
test: /\.(ttf|eot|svg)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
use: [
{ loader: 'file-loader' }
]
}
]
}
};
Font Awesome font urls are of the format [dot][extension]?=[version-number]
, for example .woff?v=4.4.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-sass-loader");
You can configurate font-awesome-sass-loader with two configuration files:
font-awesome-sass.config.js
fontAwesomeCustomizations
optionAdd both files next to each other in your project. Then:
require("font-awesome-sass-loader!./path/to/font-awesome-sass.config.js");
Or simple add it as entry point to your webpack.config.js
:
module.exports = {
entry: [
"font-awesome-sass!./path/to/font-awesome.config.js",
"your-existing-entry-point"
]
};
font-awesome-sass.config.js
Example:
module.exports = {
fontAwesomeCustomizations: "./_font-awesome.config.scss",
styles: {
"mixins": true,
"path": true,
"core": true,
"larger": true,
"fixed-width": true,
"list": true,
"bordered-pulled": true,
"animated": true,
"rotated-flipped": true,
"stacked": true,
"icons": true,
"screen-reader": true,
}
};
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 extractStyles in font-awesome-sass.config.js
.
Example:
module.exports = {
extractStyles: true,
styles: {
...
}
};
Install extract-text-webpack-plugin
before using this configuration.
Example:
module.exports = {
styleLoaders: ["style-loader", "css-loader", "sass-loader"],
};
FAQs
font-awesome (sass) package for webpack
The npm package font-awesome-sass-loader receives a total of 560 weekly downloads. As such, font-awesome-sass-loader popularity was classified as not popular.
We found that font-awesome-sass-loader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Open source maintainers are urging GitHub to let them block Copilot from submitting AI-generated issues and pull requests to their repositories.
Research
Security News
Malicious Koishi plugin silently exfiltrates messages with hex strings to a hardcoded QQ account, exposing secrets in chatbots across platforms.
Research
Security News
Malicious PyPI checkers validate stolen emails against TikTok and Instagram APIs, enabling targeted account attacks and dark web credential sales.