diff --git a/Earthfile b/Earthfile
index 50ee994..bba6129 100644
--- a/Earthfile
+++ b/Earthfile
@@ -8,7 +8,7 @@ site:
RUN bun install --frozen-lockfile
COPY --dir src index.html style.css vite.config.ts tsconfig.json svelte.config.js /site
COPY +assets-generated/ /site/assets/generated
- RUN bun x svelte-kit sync && bun run build
+ RUN export VITE_BUILD_DATE=$(date -Iminutes -u | sed 's/+00:00//') && bun x svelte-kit sync && bun run build
SAVE ARTIFACT build AS LOCAL build
deploy:
diff --git a/src/routes/(pages)/+page.svelte b/src/routes/(pages)/+page.svelte
index eada92e..1155f5b 100644
--- a/src/routes/(pages)/+page.svelte
+++ b/src/routes/(pages)/+page.svelte
@@ -2,6 +2,7 @@
import { version } from '../../../package.json';
import { i18n } from '$lib/i18n';
import type { Snapshot } from '@sveltejs/kit';
+ const buildDate = import.meta.env.VITE_BUILD_DATE || "???";
let search = '';
@@ -219,7 +220,7 @@
{/each}
-
+