diff options
author | Andinus <andinus@nand.sh> | 2021-10-11 11:14:35 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2021-10-11 11:14:35 +0530 |
commit | ea9db62c67a3817918e5581b0b1477c9494844f7 (patch) | |
tree | ea6ed68e6079e86193d24fc1d0cc13ee4443a95c /public/index.html | |
parent | 3eb2fde31a7f7f243c41c99c2aeab103036865de (diff) | |
download | dorado-ea9db62c67a3817918e5581b0b1477c9494844f7.tar.gz |
Use plotly basic package, mount with onMount
Loading it with <svelte:head> meant that it was being fetched everytime user changed the page. Now it'll be bundled with bundle.js and we use onMount to solve it after everything has been loaded/rendered.
Diffstat (limited to 'public/index.html')
-rw-r--r-- | public/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/index.html b/public/index.html index 526a8cd..6c7e561 100644 --- a/public/index.html +++ b/public/index.html @@ -4,9 +4,9 @@ <meta charset='utf-8'> <meta name='viewport' content='width=device-width,initial-scale=1'> - <title>CG Algorithms</title> + <title>Dorado</title> - <link rel='icon' type='image/png' href='./favicon.png'> + <link rel='icon' type='image/png' href='https://andinus.unfla.me/resources/favicon.png'> <link rel='stylesheet' href='./global.css'> <link rel='stylesheet' href='./build/bundle.css'> |