问题如图把大于8k的图片保存到 dist/images/xxx.png 这样的格式,并且路径正确显示图片配置 { test: /\.(png|jpg|gif|svg)$/i, loaders: [ 'url-loader?limit=8192&name:[name]-[hash:5].[ext]', 'image-webpack-loader' ] }加载的背景图body{ background: url("images/img1.jpg");}ul{ width: 500px; height: 500px; background: url("images/img3.png");}img1为小于8k的图片,正常显示img3为大于8k的图片,不显示,因为路径变了文件目录
添加回答
举报
0/150
提交
取消