We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4575b8 commit 99f7534Copy full SHA for 99f7534
1 file changed
src/routes/+page.svelte
@@ -64,9 +64,9 @@
64
</p>
65
<div class="information">
66
<!-- none of this information is statefull, therefore none of it will update. this is intended behavior -->
67
- <b>Running Information:</b>
68
- Browser: {browser && navigator.userAgent}<br />
69
- Host: {browser && window.location.hostname}<br />
+ <b>Running Information:</b><br>
+ Browser: {browser ? navigator.userAgent : "<SSR_HOST>"}<br />
+ Host: {browser ? window.location.hostname : "<SSR_HOST>"}<br />
70
DevMode: {SessionState.devMode}<br />
71
AdBlock: {SessionState.adBlockEnabled}<br />
72
Current Server: {State.currentServer.name} (Loaded {State.servers
0 commit comments