mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-24 05:29:51 +03:00
23 lines
470 B
JavaScript
23 lines
470 B
JavaScript
import staticAdapter from '@sveltejs/adapter-static';
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
preprocess: vitePreprocess({ script: true }),
|
|
kit: {
|
|
adapter: staticAdapter({
|
|
pages: 'build',
|
|
assets: 'build',
|
|
fallback: 'index.html',
|
|
precompress: true,
|
|
strict: false
|
|
})
|
|
},
|
|
compilerOptions: {
|
|
css: 'injected',
|
|
enableSourcemap: true
|
|
}
|
|
};
|
|
|
|
export default config;
|