« get me outta code hell

infra: always use ./ style for dynamic import - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-08-13 15:45:35 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-08-13 15:45:35 -0300
commit004967af7dff9d7c1f87ef89d8bbafddf830afce (patch)
tree001d9018b44970c1fae51207b6dfdc600d4db827
parente587d189f76cb537628bed0f3cde08625032ee16 (diff)
infra: always use ./ style for dynamic import
-rw-r--r--src/content/dependencies/index.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/content/dependencies/index.js b/src/content/dependencies/index.js
index 4f7c524..3c9ad32 100644
--- a/src/content/dependencies/index.js
+++ b/src/content/dependencies/index.js
@@ -163,9 +163,11 @@ export function watchContentDependencies({
         const module =
           await import(
             cachebust(
-              '.' +
-              path.sep +
-              path.relative(metaDirname, filePath)));
+              './' +
+              path
+                .relative(metaDirname, filePath)
+                .split(path.sep)
+                .join('/')));
         spec = module.default;
       } catch (caughtError) {
         error = caughtError;