auth.andert.me/src/app.html

22 lines
479 B
HTML
Raw Normal View History

2023-07-19 09:42:47 +00:00
<!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>
<script>
// Fix `global is not defined` error
2023-07-21 09:20:11 +00:00
global = window;
window.process = {
env: {
NODE_ENV: 'development'
}
}
</script>
2023-07-19 09:42:47 +00:00
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>