aboutsummaryrefslogtreecommitdiff
path: root/svelte.config.js
blob: c378da702df91ba7618106a7639f529ec4c49e4e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import adapter from '@sveltejs/adapter-vercel';
import { vitePreprocess } from '@sveltejs/kit/vite';

/** @type {import('@sveltejs/kit').Config} */
const config = {
	preprocess: vitePreprocess(),
	kit: {
		adapter: adapter(),
		alias: {
			$stores: './src/stores'
		}
	}
};

export default config;