svelt kit test
Some checks failed
Deploy to Production / Deploy (push) Failing after 4s

This commit is contained in:
Lectom C Han
2025-07-25 14:43:32 +09:00
commit dd89e5fc90
31 changed files with 6008 additions and 0 deletions

19
frontend/svelte.config.js Normal file
View File

@@ -0,0 +1,19 @@
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
import adapter from '@sveltejs/adapter-cloudflare';
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: vitePreprocess(),
kit: {
adapter: adapter({
// See https://kit.svelte.dev/docs/adapter-cloudflare
// for more information about creating a Workers site
routes: {
include: ['/*'],
exclude: ['<all>']
}
})
}
};
export default config;