aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--index.html2
-rw-r--r--src/editor.mjs2
2 files changed, 2 insertions, 2 deletions
diff --git a/index.html b/index.html
index 9af0eaa..3136019 100644
--- a/index.html
+++ b/index.html
@@ -7,7 +7,7 @@
7 7
8 <meta property="og:description" content="Add a default marker to the map."/> 8 <meta property="og:description" content="Add a default marker to the map."/>
9 <meta name="viewport" content="width=device-width, initial-scale=1"/> 9 <meta name="viewport" content="width=device-width, initial-scale=1"/>
10 <link rel="shortcut icon" href="favicon.ico" type="image/ico"/> 10 <link rel="shortcut icon" href="./favicon.ico" type="image/ico"/>
11 11
12 <!-- FIXME --> 12 <!-- FIXME -->
13 <link rel="stylesheet" type="text/css" href="./dist/css/style.css"/> 13 <link rel="stylesheet" type="text/css" href="./dist/css/style.css"/>
diff --git a/src/editor.mjs b/src/editor.mjs
index 6279f62..499d42b 100644
--- a/src/editor.mjs
+++ b/src/editor.mjs
@@ -539,7 +539,7 @@ const rendererOptions = {}
539// }}} 539// }}}
540// Aliases for map options {{{ 540// Aliases for map options {{{
541const aliasesForMapOptions = {} 541const aliasesForMapOptions = {}
542const defaultApply = '/assets/default.yml' 542const defaultApply = './assets/default.yml'
543fetch(defaultApply) 543fetch(defaultApply)
544 .then(res => res.text()) 544 .then(res => res.text())
545 .then(rawText => { 545 .then(rawText => {