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;