Replace vue-svg-loader dependency with simple JS file (fixes a security alert) (#389)

This commit is contained in:
Keavon Chambers 2021-11-01 00:14:31 -07:00
parent 330697bb98
commit 3c29633745
5 changed files with 244 additions and 15609 deletions

View file

@ -0,0 +1,4 @@
module.exports = function VueSvgLoader(svg) {
this.cacheable();
return `<template>${svg}</template>`;
};