mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-26 02:51:57 +03:00
20 lines
435 B
JavaScript
20 lines
435 B
JavaScript
|
import preprocess from "svelte-preprocess";
|
||
|
import staticAdapter from "@sveltejs/adapter-static";
|
||
|
import { vitePreprocess } from "@sveltejs/kit/vite";
|
||
|
|
||
|
/** @type {import('@sveltejs/kit').Config} */
|
||
|
const config = {
|
||
|
preprocess: [
|
||
|
vitePreprocess(),
|
||
|
preprocess({
|
||
|
postcss: true,
|
||
|
typescript: true,
|
||
|
}),
|
||
|
],
|
||
|
kit: {
|
||
|
adapter: staticAdapter(),
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default config;
|