This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Twooth/svelte.config.js
Guz013 7c86e18f2b feat: mvp
It's completed, sort of.
Already know that it will be rewritten on 2.0.0.
But it is usable and just misses some features.

I'm tired.
2023-05-23 16:37:34 -03:00

20 lines
778 B
JavaScript

import adapter from '@sveltejs/adapter-vercel';
import { vitePreprocess } from '@sveltejs/kit/vite';
import { preprocessor as documentPreprocessor } from '@sveltekit-addons/document';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
preprocess: [vitePreprocess(), documentPreprocessor()],
kit: {
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
// If your environment is not supported or you settled on a specific environment, switch out the adapter.
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
adapter: adapter(),
},
};
export default config;