From 5e7ff87960694639ff373a6a73c4df6db7551bb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Fri, 26 Jan 2024 22:45:57 +0100 Subject: [PATCH] build(webui): output to dist --- webui/.gitignore | 2 +- webui/svelte.config.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/webui/.gitignore b/webui/.gitignore index 1d85d9c..7287143 100644 --- a/webui/.gitignore +++ b/webui/.gitignore @@ -1,6 +1,6 @@ .DS_Store node_modules -/build +/dist /.svelte-kit /package .env diff --git a/webui/svelte.config.js b/webui/svelte.config.js index 0227345..dc53376 100644 --- a/webui/svelte.config.js +++ b/webui/svelte.config.js @@ -12,6 +12,7 @@ const config = { // If your environment is not supported or you settled on a specific environment, switch out the adapter. // See https://kit.svelte.dev/docs/adapters for more information about adapters. adapter: adapter({ + pages: 'dist', fallback: 'index.html' }) }