Skip to content

Commit

Permalink
fix bug pour baseURL si app sur la forge
Browse files Browse the repository at this point in the history
  • Loading branch information
eyssette committed Jul 19, 2024
1 parent a8deb2b commit 43e7662
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
encodageHash = $url.hash.slice(1);
baseURL.update(n => $url.protocol + '//' + $url.host);
baseURL.update(n => $baseURL.replace("#", ""));
if ($baseURL.includes('github') || $baseURL.includes('forge')) {
if ($baseURL.includes('github') || $baseURL.includes('eyssette.forge')) {
baseURL.update(n =>$baseURL + '/myMarkmap');
}
}
Expand Down

0 comments on commit 43e7662

Please sign in to comment.