Initial commit

This commit is contained in:
J-onasJones 2024-08-22 07:19:19 +02:00
commit fbc3528ce8
28 changed files with 298942 additions and 0 deletions

19
svelte.config.js Normal file
View file

@ -0,0 +1,19 @@
import adapter from '@sveltejs/adapter-cloudflare';
export default {
kit: {
adapter: adapter({
// See below for an explanation of these options
routes: {
include: ['/*'],
exclude: ['<all>']
},
platformProxy: {
configPath: 'wrangler.toml',
environment: undefined,
experimentalJsonConfig: false,
persist: false
}
})
}
};