Skip to content

Instantly share code, notes, and snippets.

@cotyhamilton
Last active October 19, 2022 00:21
Show Gist options
  • Save cotyhamilton/65c8688175c76d4bdced086e49e8a660 to your computer and use it in GitHub Desktop.
Save cotyhamilton/65c8688175c76d4bdced086e49e8a660 to your computer and use it in GitHub Desktop.
SvelteKit Env Vars - +layout.svelte
<script lang="ts">
import type { PageData } from "./$types";
export let data: PageData;
const { configuration } = data;
</script>
{#if configuration.displayEnvironment}
<div class="env-details">
<small>Environment: {configuration.environment}</small>
</div>
{/if}
<slot />
<style>
.env-details {
background-color: goldenrod;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment