Initial commit

This commit is contained in:
Stefan Prechtl 2022-09-20 10:43:05 +02:00
commit affe27b3e8
49 changed files with 33325 additions and 0 deletions

View file

@ -0,0 +1,15 @@
import adapter from '@sveltejs/adapter-auto';
import preprocess from 'svelte-preprocess';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: preprocess(),
kit: {
adapter: adapter()
}
};
export default config;