解决 vue3.x 引入 bootstrap样式font字体库找不到

解决 vue3.x 引入 bootstrap样式font字体库找不到

问题描述,在vue3.x项目中使用了bootstrap.css文件,运行项目,font库找不到

异常信息
These relative modules were not found:

* ../fonts/glyphicons-halflings-regular.eot in ./node_modules/css-loader/dist/cj
s.js??ref--6-oneOf-3-1!./node_modules/postcss-loader/src??ref--6-oneOf-3-2!./src
/bootstrap.css
* ../fonts/glyphicons-halflings-regular.svg in ./node_modules/css-loader/dist/cj
s.js??ref--6-oneOf-3-1!./node_modules/postcss-loader/src??ref--6-oneOf-3-2!./src
/bootstrap.css
* ../fonts/glyphicons-halflings-regular.ttf in ./node_modules/css-loader/dist/cj
s.js??ref--6-oneOf-3-1!./node_modules/postcss-loader/src??ref--6-oneOf-3-2!./src
/bootstrap.css
* ../fonts/glyphicons-halflings-regular.woff in ./node_modules/css-loader/dist/c
js.js??ref--6-oneOf-3-1!./node_modules/postcss-loader/src??ref--6-oneOf-3-2!./sr
c/bootstrap.css
* ../fonts/glyphicons-halflings-regular.woff2 in ./node_modules/css-loader/dist/
cjs.js??ref--6-oneOf-3-1!./node_modules/postcss-loader/src??ref--6-oneOf-3-2!./s
rc/bootstrap.css

解决方法:
打开bootstrap.css文件,查找@font-face代码

@font-face {
  font-family: 'Glyphicons Halflings';

  src: url('../fonts/glyphicons-halflings-regular.eot');
  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

修改为

@font-face {
  font-family: 'Glyphicons Halflings';

  src: url('/fonts/glyphicons-halflings-regular.eot');
  src: url('/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('/fonts/glyphicons-halflings-regular.woff') format('woff'), url('/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

参考文章
https://www.runoob.com/cssref/css3-pr-font-face-rule.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值