2023-07-24 22:11:54 +05:30
|
|
|
// import adapter from '@sveltejs/adapter-auto';
|
|
|
|
import adapter from '@sveltejs/adapter-static';
|
2023-01-19 22:35:09 +05:30
|
|
|
import { vitePreprocess } from '@sveltejs/kit/vite';
|
|
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
|
|
|
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
|
|
|
|
// for more information about preprocessors
|
|
|
|
preprocess: vitePreprocess(),
|
|
|
|
|
|
|
|
kit: {
|
2023-12-24 15:20:31 +05:30
|
|
|
adapter: adapter({
|
|
|
|
pages: 'build',
|
|
|
|
assets: 'build',
|
|
|
|
fallback: null,
|
|
|
|
precompress: false,
|
|
|
|
strict: false
|
|
|
|
})
|
2023-01-19 22:35:09 +05:30
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|