grunt-inline-css
grunt-inline-css copied to clipboard
Disable base64 ?
Is it possible to disable replacing src path with base64 for img tag ?
Make use of webResources
:
inlinecss: {
myfile: {
options: {
webResources: {
images: false,
}
},
files: {
'/dest.html': '/src.html',
}
}
},
Thanks @javierpose, it works!