You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
368 B

1 year ago
  1. import adapter from '@sveltejs/adapter-static';
  2. import { vitePreprocess } from '@sveltejs/kit/vite';
  3. /** @type {import('@sveltejs/kit').Config} */
  4. const config = {
  5. // Consult https://kit.svelte.dev/docs/integrations#preprocessors
  6. // for more information about preprocessors
  7. preprocess: vitePreprocess(),
  8. kit: {
  9. adapter: adapter()
  10. }
  11. };
  12. export default config;