owlboard-svelte/svelte.config.js

14 lines
273 B
JavaScript

import adapter from '@sveltejs/adapter-static';
export default {
kit: {
adapter: adapter({
pages: 'build',
assets: 'build',
fallback: 'index.html',
precompress: true,
strict: true
})
}
};