jonasjones.dev/src/app.html
J-onasJones 0923936258 Added property to disable dark-reader extension
Added meta property to gloablly disable DarkReader on the website. This fixes an issue where the background wouldn't render properly
2023-09-27 14:27:59 +02:00

17 lines
No EOL
406 B
HTML

<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" href="/src/routes/+page.css">
<head>
<meta name="darkreader-lock">
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>