bgg-ottawa-sell-club/svelte.config.js

13 lines
233 B
JavaScript
Raw Normal View History

2024-02-04 17:54:23 +00:00
import adapter from '@sveltejs/adapter-static';
2024-01-31 18:22:14 +00:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
2024-02-04 17:54:23 +00:00
kit: {
adapter: adapter({
fallback: '/index.html',
}),
},
2024-01-31 18:22:14 +00:00
};
export default config;