2024-02-21 14:19:36 -08:00
|
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'
|
2024-02-21 15:00:21 -08:00
|
|
|
import adapter from '@sveltejs/adapter-static'
|
2024-02-21 14:19:36 -08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
// Consult https://svelte.dev/docs#compile-time-svelte-preprocess
|
|
|
|
// for more information about preprocessors
|
|
|
|
preprocess: vitePreprocess(),
|
2024-02-21 15:00:21 -08:00
|
|
|
adapter: adapter({
|
|
|
|
pages: 'build',
|
|
|
|
assets: 'build',
|
|
|
|
fallback: null,
|
|
|
|
precompress: false,
|
|
|
|
}),
|
2024-02-21 14:19:36 -08:00
|
|
|
}
|