Skip to content

Commit

Permalink
Fix relative import issue in libsass/dart sass
Browse files Browse the repository at this point in the history
  • Loading branch information
bep committed Feb 21, 2024
1 parent e4d7909 commit 7c46397
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/transform.go
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ func (r *resourceAdapter) transform(key string, publish, setContent bool) (*reso
tctx.To = b1

tctx.InPath = r.target.TargetPath()
tctx.SourcePath = tctx.InPath
tctx.SourcePath = strings.TrimPrefix(tctx.InPath, "/")

counter := 0
writeToFileCache := false
Expand Down

0 comments on commit 7c46397

Please sign in to comment.