Skip to content

Commit

Permalink
fix: untranslatable relative path
Browse files Browse the repository at this point in the history
* this bug prevented the migration to webpack 5, because this line was
  translated to a relative path, which could not be converted to an
  absolute path. this is bad, because webpack 5 introduced a check about
  relative paths and removed those and printed an error.
  • Loading branch information
utnapischtim authored and kpsherva committed Jun 9, 2023
1 parent e3855c3 commit 830d1e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
@import '@{themesFolder}/default/globals/site.variables';

/* Packaged site.variables */
@import '@{themesFolder}/@{siteFolder}/globals/site.variables';
@import '@{themesFolder}/@{site}/globals/site.variables';

/* Component's site.variables */
@import (optional) '@{themesFolder}/@{theme}/globals/site.variables';
Expand Down

0 comments on commit 830d1e3

Please sign in to comment.