From e0b5b91318dac9518391d0ec2efc6f6d8ee9ff6f Mon Sep 17 00:00:00 2001 From: david-lienberger Date: Tue, 13 Aug 2024 07:47:27 +0200 Subject: [PATCH] chore(gh-pages): set app as appDir --- .gitignore | 1 + static/.nojekyll | 0 svelte.config.js | 3 ++- 3 files changed, 3 insertions(+), 1 deletion(-) delete mode 100644 static/.nojekyll diff --git a/.gitignore b/.gitignore index c214e95..da12cdd 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,7 @@ node_modules .output .vercel /.svelte-kit +build # OS .DS_Store diff --git a/static/.nojekyll b/static/.nojekyll deleted file mode 100644 index e69de29..0000000 diff --git a/svelte.config.js b/svelte.config.js index c4a18a0..5eddade 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -14,7 +14,8 @@ const config = { adapter: adapter(), paths: { base: process.env.NODE_ENV === 'production' ? '/train-line-trainer' : '' - } + }, + appDir: 'app' } };