mirror of
https://github.com/System-End/scraps.git
synced 2026-04-19 20:55:12 +00:00
19 lines
332 B
JavaScript
19 lines
332 B
JavaScript
import adapter from '@sveltejs/adapter-static';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
kit: {
|
|
adapter: adapter({
|
|
pages: 'build',
|
|
assets: 'build',
|
|
fallback: '200.html',
|
|
precompress: false,
|
|
strict: false
|
|
}),
|
|
prerender: {
|
|
handleUnseenRoutes: 'ignore'
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|