2023-11-18 04:13:36 +00:00
|
|
|
import adapter from '@sveltejs/adapter-static';
|
2023-07-01 04:50:47 +00:00
|
|
|
import preprocess from 'svelte-preprocess';
|
2022-09-08 15:30:49 +00:00
|
|
|
|
2022-05-21 07:23:55 +00:00
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
2023-07-01 04:50:47 +00:00
|
|
|
preprocess: preprocess(),
|
2023-07-16 01:13:04 +00:00
|
|
|
onwarn: (warning, handler) => {
|
|
|
|
if (warning.code.includes('a11y')) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
handler(warning);
|
|
|
|
},
|
2023-07-01 04:50:47 +00:00
|
|
|
kit: {
|
2023-11-18 04:13:36 +00:00
|
|
|
adapter: adapter({
|
|
|
|
// default options are shown. On some platforms
|
|
|
|
// these options are set automatically — see below
|
|
|
|
pages: 'build',
|
|
|
|
assets: 'build',
|
|
|
|
fallback: 'index.html',
|
|
|
|
precompress: false,
|
|
|
|
strict: true,
|
|
|
|
}),
|
2023-07-01 04:50:47 +00:00
|
|
|
},
|
2022-05-21 07:23:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|