using the plugin config module prefix

pull/1/head
WolverinDEV 2021-03-19 01:45:08 +01:00
parent 3645479754
commit fcd4cf7b35
1 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ class SvgSpriteModule extends Module {
}
identifier() {
return "svg-sprite/" + this.configName;
return this.pluginConfig.modulePrefix + this.configName;
}
readableIdentifier() {
@ -73,7 +73,7 @@ class SvgSpriteModule extends Module {
}
libIdent() {
return "svg-sprite/" + this.configName;
return this.pluginConfig.modulePrefix + this.configName;
}
needBuild(context, callback) {