我尝试将图像添加到我的应用中
import { ReactComponent as Logo } from './image.svg'
但出现错误:
webpack.config:
~ {
+ test: /\.(gif|png|jpg|svg)(\?.*$|$)/,
+ use: [
+ {
+ loader: 'url-loader',
+ options: {
+ limit: 8192,
+ name: '[name].[ext]',
+ publicPath: 'images/',
+ },
+ },
+ ],
+ },