init the awkward code

This commit is contained in:
Bao Nguyen
2023-02-13 19:32:10 +07:00
commit 27170afcac
5426 changed files with 1244579 additions and 0 deletions

18
svelte.config.js Normal file
View File

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