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' }) }