diff --git a/export.mjs b/export.mjs index 23fa80e..b0e1d87 100644 --- a/export.mjs +++ b/export.mjs @@ -1 +1 @@ -export { json_as_html } from "/src/core.mjs"; +export { json_as_html } from "./src/core.mjs"; diff --git a/index.html b/index.html index 5b4800d..82a1ace 100644 --- a/index.html +++ b/index.html @@ -7,7 +7,7 @@ json as html - + diff --git a/src/demo.mjs b/src/demo.mjs index ed6c5b6..b401cf0 100644 --- a/src/demo.mjs +++ b/src/demo.mjs @@ -1,4 +1,4 @@ -import { json_as_html } from "/export.mjs"; +import { json_as_html } from "./core.mjs";