2024-01-13 22:30:21 +00:00
|
|
|
import adapter from '@sveltejs/adapter-static';
|
2024-01-03 20:19:14 +00:00
|
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
2024-01-03 19:35:06 +00:00
|
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
2024-01-13 22:30:21 +00:00
|
|
|
extensions: ['.svelte'],
|
2024-01-03 19:35:06 +00:00
|
|
|
kit: {
|
2024-01-13 22:30:21 +00:00
|
|
|
adapter: adapter({
|
|
|
|
// default options are shown. On some platforms
|
|
|
|
// these options are set automatically — see below
|
|
|
|
pages: 'build',
|
|
|
|
assets: 'build',
|
|
|
|
fallback: undefined,
|
|
|
|
precompress: false,
|
|
|
|
strict: true
|
|
|
|
})
|
2024-01-03 20:19:14 +00:00
|
|
|
},
|
2024-01-13 22:30:21 +00:00
|
|
|
preprocess: [vitePreprocess({})]
|
2024-01-03 19:35:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|