to sveltekit

This commit is contained in:
Vincent Liao
2022-03-21 13:03:54 +07:00
parent 3450d2c2f5
commit 18f00434e1
46 changed files with 5813 additions and 1664 deletions

17
svelte.config.js Normal file
View File

@@ -0,0 +1,17 @@
import preprocess from 'svelte-preprocess';
import adapter from '@sveltejs/adapter-auto';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter()
},
preprocess: [
preprocess({
postcss: true
})
]
};
export default config;