We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bee0ac8 commit b48e159Copy full SHA for b48e159
buildprocess/configureWebpackForPlugins.js
@@ -51,10 +51,8 @@ function createPluginIconsRule() {
51
options: {
52
namespace: (svgPath) => {
53
// Generate a symbolId by concatenating the package name and the icon name
54
- const packageName = packageNames[svgPath] || "terriajs-plugin-";
55
- const iconName = path.basename(svgPath, ".svg");
56
- const symbolId = `${packageName}-${iconName}`;
57
- return symbolId;
+ const packageName = packageNames[svgPath] || "terriajs-plugin";
+ return packageName;
58
}
59
60
};
0 commit comments