mirror of
https://github.com/MizuchiLabs/mantrae.git
synced 2025-12-19 21:30:14 -06:00
21 lines
502 B
JavaScript
21 lines
502 B
JavaScript
import adapter from '@sveltejs/adapter-static';
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
|
|
// for more information about preprocessors
|
|
preprocess: [vitePreprocess({ postcss: true })],
|
|
kit: {
|
|
adapter: adapter({
|
|
pages: 'build',
|
|
assets: 'build',
|
|
fallback: undefined,
|
|
precompress: true,
|
|
strict: true
|
|
})
|
|
}
|
|
};
|
|
|
|
export default config;
|