import { sveltekit } from '@sveltejs/kit/vite'; import preprocess from 'svelte-preprocess'; /** @type {import('vite').UserConfig} */ const config = { plugins: [sveltekit({ useVitePreprocess: true, noExternal: ['dayjs'] })], }; export default config;