vue 使用 element-ui 时报错ERROR in ./node_modules/element-ui/lib/theme-chalk/fonts/element-icons.ttf
参考(原文更详细):https://www.cnblogs.com/belongs-to-qinghua/p/11123596.html原因:简介的vue脚手架没有配置ttf文件配置解决办法:在 web pack.config.js 文件中进行如下配置{test: /\.(eot|svg|ttf|woff|woff2)(\?\S*)?$/,loader: 'file-loader'}添加位置:..
·
参考(原文更详细):https://www.cnblogs.com/belongs-to-qinghua/p/11123596.html
原因:简介的vue脚手架没有配置ttf文件配置
解决办法:在 web pack.config.js
文件中进行如下配置
{
test: /\.(eot|svg|ttf|woff|woff2)(\?\S*)?$/,
loader: 'file-loader'
}
添加位置:
更多推荐
已为社区贡献28条内容
所有评论(0)