sphragis-leaderboard / svelte.config.js
Urdatorn's picture
Rebuild leaderboard with SvelteKit 5
0c4147f
Raw
History Blame Contribute Delete
316 Bytes
import adapter from '@sveltejs/adapter-static';
/** @type {import('@sveltejs/kit').Config} */
const config = {
compilerOptions: {
runes: true
},
kit: {
adapter: adapter({
pages: 'build',
assets: 'build',
fallback: '404.html',
strict: true
})
}
};
export default config;