diff --git a/bin/web/svelte.config.js b/bin/web/svelte.config.js index c7c635e..b2a4b0b 100644 --- a/bin/web/svelte.config.js +++ b/bin/web/svelte.config.js @@ -10,6 +10,11 @@ export default { fallback: undefined, precompress: false, strict: true - }) + }), + version: { + // Use a deterministic version string for reproducible builds. + // Without this option, SvelteKit will use a timestamp. + name: process.env.GITHUB_SHA || 'dev' + } } };