owlboard-svelte/svelte.config.js

16 lines
396 B
JavaScript
Raw Normal View History

2023-06-12 19:11:03 +01:00
import adapter from '@sveltejs/adapter-static';
2023-06-12 19:02:49 +01:00
2023-06-12 19:11:03 +01:00
export default {
kit: {
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
})
}
2023-06-12 19:02:49 +01:00
};