-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fc0f520
commit 7382392
Showing
1 changed file
with
24 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |