16 lines
396 B
JavaScript
16 lines
396 B
JavaScript
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
|
|
import adapter from '@sveltejs/adapter-static';
|
|
|
|
export default {
|
|
// Consult https://svelte.dev/docs#compile-time-svelte-preprocess
|
|
// for more information about preprocessors
|
|
preprocess: vitePreprocess(),
|
|
kit: {
|
|
adapter: adapter({
|
|
pages: 'build',
|
|
assets: 'build',
|
|
fallback: 'index.html'
|
|
})
|
|
},
|
|
};
|