UNPKG

svg2base64-loader

Version:

A Webpack Loader to turn SVGs into Base64

7 lines (6 loc) 236 B
module.exports = function (content) { // enable cache this.cacheable && this.cacheable(); return `module.exports = ` + JSON.stringify("data:image/svg+xml;base64," + content.toString('base64')); }; module.exports.raw = true;