使用css-modules时,iconfont.css报错
捣腾在webpack中配置css-modules时,iconfont报错。
以下是webpack配置:
{
test: /\.scss|css$/,
loader: ExtractTextPlugin.extract('style', 'css?modules&localIdentName=[name]---[local]---[hash:base64:5]!sass')
},
{
test: /\.(woff|svg|eot|ttf)\??.*$/,
loader: 'file-loader?name=font/[name].[ext]',
query: 'random=' + new Date().getTime(),
},
错误信息如下:
ERROR in ../~/css-loader?modules&localIdentName=[name]---[local]---[hash:base64:5]!../~/sass-loader!./asset/alifont/iconfont.css
Module not found: Error: Cannot resolve module 'iconfont.eot' in /Users/xxx/Developer/project/asset/alifont
google和百度发现有些许类似的案例,都没有给出解决方法
有遇过的,帮忙指点一二,谢谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
exclude把iconfont.eot过滤掉即可
自己没看清: