css-img-loader
v1.0.0
Published
css-img-loader module for webpack
Downloads
2
Readme
css-img-loader for webpack
背景
改装自file-loader
,因为file-loader
的name
即是内容中的路径也是输出文件的路径,不够灵活,css-img-loader
增加了outputPath
属性!
安装
npm install css-img-loader --save-dev
用法
{
test:/\.(png|jpg)$/,
loader: 'css-img-loader?limit=7&name=../img/[name].[ext]&outputPath=img/'
}
name
是内容中的路径,文件路径是outputPath
+[name].[ext]
形成的!其他用法和file-loader
一致!