mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-23 20:54:50 +03:00
16 lines
311 B
JavaScript
16 lines
311 B
JavaScript
import staticAdapter from '@sveltejs/adapter-static';
|
|
import { vitePreprocess } from '@sveltejs/kit/vite';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
preprocess: vitePreprocess(),
|
|
kit: {
|
|
adapter: staticAdapter({
|
|
precompress: true,
|
|
strict: false
|
|
})
|
|
}
|
|
};
|
|
|
|
export default config;
|