migrate from sveltekit to vanilla svelte

This commit is contained in:
Vincent Liao
2022-02-27 00:40:17 +07:00
parent 2f00cdca0d
commit ca5bae48f3
54 changed files with 1442 additions and 2105 deletions

View File

@@ -1,22 +0,0 @@
import preprocess from 'svelte-preprocess';
import adapter from '@sveltejs/adapter-auto';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter(),
// Override http methods in the Todo forms
methodOverride: {
allowed: ['PATCH', 'DELETE']
}
},
preprocess: [
preprocess({
postcss: true
})
]
};
export default config;