home/svelte.config.js
Thomas Klaehn cecc37ce9e Initial commit
Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
2023-01-31 11:53:17 +01:00

13 lines
200 B
JavaScript

import adapter from '@sveltejs/adapter-static';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter({
fallback: "200.html"
})
}
};
export default config;