Skip to content

Commit

Permalink
Removed WebAssembly
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Sep 29, 2024
1 parent fc0f520 commit 7382392
Showing 1 changed file with 24 additions and 17 deletions.
41 changes: 24 additions & 17 deletions ui/src/app.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,27 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width" />
%sveltekit.head%
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width" />
%sveltekit.head%

<link
rel="preload"
href="%sveltekit.assets%/fonts/NotoSans-VariableFont_wdthwght.ttf"
as="font"
type="font/ttf"
crossorigin
/>
</head>
<body data-sveltekit-preload-data="hover" data-theme="volla-theme" class="h-screen">
<div style="display: contents">%sveltekit.body%</div>
</body>
<link
rel="preload"
href="%sveltekit.assets%/fonts/NotoSans-VariableFont_wdthwght.ttf"
as="font"
type="font/ttf"
crossorigin
/>
<script>
WebAssembly.instantiate = () => {};
</script>
</head>
<body
data-sveltekit-preload-data="hover"
data-theme="volla-theme"
class="h-screen"
>
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>

0 comments on commit 7382392

Please sign in to comment.