aboutsummaryrefslogtreecommitdiff
path: root/svelte.config.js
blob: 4c173d7d761b93df91ed0b64997a5d7773d80470 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import adapter from 'svelte-adapter-bun';
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;