Skip to content

Commit

Permalink
fix skin files path
Browse files Browse the repository at this point in the history
  • Loading branch information
dalamudx authored Jan 8, 2025
1 parent 2b614ee commit 7643ce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/user_config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ class UserConfig {
handleSkin(skinName: string) {
if (!skinName || skinName === 'default')
return;
const skinCSSRelativeHref = `skins/${skinName}/${skinName}.css`;
const skinCSSRelativeHref = `../raidboss/skins/${skinName}/${skinName}.css`;
this.appendCSSLink(skinCSSRelativeHref);
}
appendJSLink(src: string) {
Expand Down

0 comments on commit 7643ce9

Please sign in to comment.