24 lines
543 B
JavaScript
24 lines
543 B
JavaScript
import adapter from "@sveltejs/adapter-static";
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
// preprocess: preprocess(),
|
|
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
|
|
// for more information about preprocessors
|
|
preprocess: vitePreprocess(),
|
|
|
|
kit: {
|
|
adapter: adapter({
|
|
pages: 'build',
|
|
assets: 'build',
|
|
fallback: '404.html',
|
|
precompress: false,
|
|
strict: true,
|
|
trailingSlash: 'always'
|
|
})
|
|
}
|
|
};
|
|
|
|
export default config;
|