changed bootstrap icon svg name prefix
This commit is contained in:
parent
f3be57a47b
commit
97659bf32c
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ module.exports = (env, options) => {
|
||||||
publicPath: "../images/",
|
publicPath: "../images/",
|
||||||
symbolId: (filePath) => {
|
symbolId: (filePath) => {
|
||||||
if (filePath.includes("bootstrap-icons")) {
|
if (filePath.includes("bootstrap-icons")) {
|
||||||
return `bsi-${path.basename(filePath).slice(0, -4)}`;
|
return `bi-${path.basename(filePath).slice(0, -4)}`;
|
||||||
} else if (filePath.includes("@fortawesome")) {
|
} else if (filePath.includes("@fortawesome")) {
|
||||||
if (filePath.includes("brands")) {
|
if (filePath.includes("brands")) {
|
||||||
return `fab-${path.basename(filePath).slice(0, -4)}`;
|
return `fab-${path.basename(filePath).slice(0, -4)}`;
|
||||||
|
|
Loading…
Reference in a new issue