扫码关注官方订阅号
我在a.vue文件中
<style> @import '../css/bootstrap.css'; </style>
但是却提示报错,
你没有配置正确的loader去加载字体
cnpm i --save-dev url-loader
在webpack.config.js里module.rules:输入
{ test: /\.(eot|svg|ttf|woff|woff2)$/, loader:"url-loader", options: { name: '[name].[ext]?[hash]' } }
重启 npm run dev。
npm run dev
在 index.html 中使用 link 标签就可以
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
你没有配置正确的loader去加载字体
在webpack.config.js里module.rules:输入
重启
npm run dev。在 index.html 中使用 link 标签就可以