change import paths from absolute to relative.

because apparently absolute ones messes with submodules :/
This commit is contained in:
trans_soup 2023-07-16 16:41:50 +02:00
parent 002cfcba0b
commit 9e35a20a60
3 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
export { json_as_html } from "/src/core.mjs";
export { json_as_html } from "./src/core.mjs";

View File

@ -7,7 +7,7 @@
<title>json as html</title>
<script defer type="module" src="src/demo.mjs"></script>
<script defer type="module" src="./src/demo.mjs"></script>
</head>
<body></body>

View File

@ -1,4 +1,4 @@
import { json_as_html } from "/export.mjs";
import { json_as_html } from "./core.mjs";