Dependencies, README, svelte setup w/ vite, prettier & eslint configs

This commit is contained in:
2022-11-28 20:01:10 +01:00
commit c013c839bb
10 changed files with 191 additions and 0 deletions

17
svelte.config.js Normal file
View File

@@ -0,0 +1,17 @@
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: {
csrf: {
checkOrigin: false
},
outDir: 'build'
}
};
export default config;