mirror of
https://github.com/Xevion/banner.git
synced 2026-01-31 10:23:39 -06:00
18 lines
378 B
JavaScript
18 lines
378 B
JavaScript
import adapter from "@sveltejs/adapter-static";
|
|
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
preprocess: vitePreprocess(),
|
|
kit: {
|
|
adapter: adapter({
|
|
pages: "dist",
|
|
assets: "dist",
|
|
fallback: "index.html",
|
|
precompress: false,
|
|
}),
|
|
},
|
|
};
|
|
|
|
export default config;
|