owlboard-svelte/svelte.config.js

14 lines
231 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 {
2023-07-07 11:27:28 +01:00
kit: {
adapter: adapter({
pages: 'build',
assets: 'build',
fallback: 'index.html',
precompress: true,
strict: true
})
}
2023-06-12 19:02:49 +01:00
};