This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
atsebay.t/ui/svelte.config.js

18 lines
403 B
JavaScript
Raw Normal View History

2022-03-01 12:46:44 +00:00
import adapter from '@sveltejs/adapter-static';
2021-11-18 11:12:28 +00:00
import preprocess from 'svelte-preprocess';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: preprocess(),
kit: {
2022-03-01 12:46:44 +00:00
adapter: adapter({
fallback: 'index.html'
}),
2021-11-18 11:12:28 +00:00
}
};
export default config;