owlboard-svelte/svelte.config.js

16 lines
255 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
const config = {
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
};
export default config;