imlucas / gulp-juice

process html files through juice to inline CSS
10 stars 17 forks source link

Turn off image base64 encoding #7

Open zr87 opened 8 years ago

zr87 commented 8 years ago

The question is in the topic subject. So,is it possible?

zebapy commented 7 years ago

@ZRdesign Juice internally uses https://www.npmjs.com/package/web-resource-inliner, which you can pass options to via juice/gulp juice.

.pipe(juice({
    webResources: {
      images: false
    }
}))