feat: create main website

This commit is contained in:
Kim, Jimin 2023-06-26 00:33:47 +09:00
parent 6a4b3761a9
commit 3b05f4de71
26 changed files with 2325 additions and 463 deletions

View file

@ -0,0 +1,19 @@
import adapter from "@sveltejs/adapter-static"
import { vitePreprocess } from "@sveltejs/kit/vite"
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: vitePreprocess(),
kit: {
adapter: adapter({
pages: "build",
assets: "build",
fallback: "index.html",
precompress: true,
strict: true,
}),
},
}
export default config