please be fixed now

This commit is contained in:
J-onasJones 2024-06-07 01:06:21 +02:00
parent 7d3ae84925
commit 9a10df78c8
3 changed files with 23 additions and 12 deletions

View file

@ -1,10 +1,13 @@
import preprocess from 'svelte-preprocess';
import cloudflare from '@sveltejs/adapter-cloudflare';
import adapter from '@sveltejs/adapter-cloudflare';
export default {
preprocess: preprocess(),
kit: {
adapter: cloudflare(),
target: '#svelte' // Ensure this matches your target in `src/app.html`
}
};
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
// 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()
}
};
export default config;