diff options
author | Bjørn Erik Pedersen <[email protected]> | 2024-02-20 14:46:03 +0100 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2024-02-20 17:00:32 +0100 |
commit | 621194a3197d27e3b5909bca9b3efa6ae70da86c (patch) | |
tree | 9dbdeac8dae393df7b63351a63bc166cc19ddecb /commands | |
parent | 48eec2a4e63cb0b542858f3b133eba19aa23978c (diff) | |
download | hugo-621194a3197d27e3b5909bca9b3efa6ae70da86c.tar.gz hugo-621194a3197d27e3b5909bca9b3efa6ae70da86c.zip |
Fix dart sass import regression
Fixes #12072
Diffstat (limited to 'commands')
-rw-r--r-- | commands/server.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/server.go b/commands/server.go index 78155521f..d08bc5277 100644 --- a/commands/server.go +++ b/commands/server.go @@ -1087,7 +1087,7 @@ func (s *staticSyncer) syncsStaticEvents(staticEvents []fsnotify.Event) error { fromPath := ev.Name - relPath, found := sourceFs.MakePathRelative(fromPath) + relPath, found := sourceFs.MakePathRelative(fromPath, true) if !found { // Not member of this virtual host. |