mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-22 19:14:31 +03:00
20 lines
416 B
JavaScript
20 lines
416 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({
|
|
pages: 'build',
|
|
assets: 'build',
|
|
fallback: 'index.html',
|
|
precompress: true,
|
|
strict: false
|
|
})
|
|
},
|
|
compilerOptions: { css: 'injected' }
|
|
};
|
|
|
|
export default config;
|