A server-side link shortening service powered by Linkat
1import adapter from '@sveltejs/adapter-auto';
2import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
3
4/** @type {import('@sveltejs/kit').Config} */
5const config = {
6 // Consult https://svelte.dev/docs/kit/integrations
7 // for more information about preprocessors
8 preprocess: vitePreprocess(),
9 kit: {
10 // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
11 // If your environment is not supported, or you settled on a specific environment, switch out the adapter.
12 // See https://svelte.dev/docs/kit/adapters for more information about adapters.
13 adapter: adapter()
14 }
15};
16
17export default config;