Skip to content

Instantly share code, notes, and snippets.

@mohnatus
Last active December 15, 2022 11:17
Show Gist options
  • Save mohnatus/c249e05280a79b117f4977b214bcfedd to your computer and use it in GitHub Desktop.
Save mohnatus/c249e05280a79b117f4977b214bcfedd to your computer and use it in GitHub Desktop.
Svg sprite webpack loader
const loader = {
test: /\.svg?$/,
use: [
{
loader: "svg-sprite-loader",
options: {
symbolId: (filePath) => {
let fileData = path.parse(filePath);
return "svg-icon-" + fileData.name;
},
},
},
],
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment