We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f34a594 commit 93131beCopy full SHA for 93131be
frontend/scripts/fontawesome.ts
@@ -99,7 +99,9 @@ export function getFontawesomeConfig(debug = false): FontawesomeConfig {
99
(it) => !(solid.includes(it) || regular.includes(it) || brands.includes(it))
100
);
101
if (leftOvers.length !== 0) {
102
- throw new Error("unknown icons: " + leftOvers.toString());
+ throw new Error(
103
+ "Fontawesome failed with unknown icons: " + leftOvers.toString()
104
+ );
105
}
106
107
if (debug) {
0 commit comments