switch to ssg, add atcute, add iconify

This commit is contained in:
Badtz 2025-03-27 23:10:40 -07:00
parent b4bdb49c45
commit 72f418058f
12 changed files with 146 additions and 9 deletions

View file

@ -1,5 +1,5 @@
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
import adapter from 'svelte-adapter-bun';
/** @type {import('@sveltejs/kit').Config} */
const config = {
@ -11,7 +11,16 @@ const config = {
// 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()
adapter: adapter({
pages: 'build',
assets: 'build',
fallback: '200.html',
precompress: false,
strict: true,
prerender: {
entries: ['*']
}
})
}
};