build: should be a static site instead of a dynamic one

This commit is contained in:
Sawyer Andrews 2025-09-05 18:14:37 -05:00
parent 651beb7cd6
commit 62a97dc271
Signed by: sawyer
GPG key ID: D4B437630877389B
4 changed files with 15 additions and 4 deletions

View file

@ -1,11 +1,8 @@
import adapter from '@sveltejs/adapter-auto';
import adapter from '@sveltejs/adapter-static'; // Change from adapter-auto
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
adapter: adapter()
}
};