課程
/前端開(kāi)發(fā)
/前端工具
/webpack深入與實(shí)戰(zhàn)
image-webpack-loard在wewebpack2中使用出錯(cuò)??
2017-03-23
源自:webpack深入與實(shí)戰(zhàn) 4-7
正在回答
webpack3也是這樣的問(wèn)題? ?求大神解決啊
有把圖片壓縮嗎 怎么好像文件大小沒(méi)變
先安裝img-loader : ?
npm?install?img-loader?--save-dev
然后在webpack.config.js中配置:? ?
{ ?????test:?/\.(png|jpg|gif|svg)$/i, ?????use:?[ ???????{ ???????loader:?'url-loader', ???????options:?{ ?????????limit:?10000, ?????????name:?'assets/[name]-[hash:5].[ext]' ???????} ???????}, ???????{ ???????loader:?'img-loader' ???????} ?????] }
? ?
{? ? ? ? ? ? test:/\.(png|jpg|gif|svg)$/i,? ? ? ? ? ? loader:'image-webpack',? ? ? ? ? ? loader:'url-loader',? ? ? ? ? ? query:{? ? ? ? ? ? limit:1000,? ? ? ? ? ? name:'assets/[name]-[hash:5].[ext]'? ? ? ? ? ? }? ? ? ? ? ? }
{
? ? ? ? ? ? test:/\.(png|jpg|gif|svg)$/i,
? ? ? ? ? ? loader:'image-webpack',
? ? ? ? ? ? loader:'url-loader',
? ? ? ? ? ? query:{
? ? ? ? ? ? limit:1000,
? ? ? ? ? ? name:'assets/[name]-[hash:5].[ext]'
? ? ? ? ? ? }
舉報(bào)
webpack實(shí)戰(zhàn)教程,用真實(shí)項(xiàng)目帶你探索 webpack 強(qiáng)大的功能
10 回答image-webpack-loader 在webpack2中使用出錯(cuò)
5 回答image-webpack-loader按照官方文檔使用報(bào)錯(cuò)
2 回答安裝image-webpack-loader報(bào)錯(cuò)
2 回答webpack使用loader 報(bào)錯(cuò)
2 回答webpack 中如何使用compass
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢(xún)優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2018-01-28
webpack3也是這樣的問(wèn)題? ?求大神解決啊
2017-04-20
有把圖片壓縮嗎 怎么好像文件大小沒(méi)變
2017-04-10
先安裝img-loader : ?
然后在webpack.config.js中配置:? ?
? ?
2017-03-24