feat: create main website
This commit is contained in:
parent
6a4b3761a9
commit
3b05f4de71
26 changed files with 2325 additions and 463 deletions
19
apps/main/svelte.config.js
Normal file
19
apps/main/svelte.config.js
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue