grunt-inline-css icon indicating copy to clipboard operation
grunt-inline-css copied to clipboard

Disable base64 ?

Open xhoskin opened this issue 9 years ago • 2 comments

Is it possible to disable replacing src path with base64 for img tag ?

xhoskin avatar Sep 03 '15 08:09 xhoskin

Make use of webResources:

        inlinecss: {
            myfile: {
                options: {
                    webResources: {
                        images: false,
                    }
                },
                files: {
                    '/dest.html': '/src.html',
                }
            }
        },

javierpose avatar Oct 16 '15 07:10 javierpose

Thanks @javierpose, it works!

stevepiron avatar Jan 12 '16 11:01 stevepiron