14 lines
259 B
JavaScript
14 lines
259 B
JavaScript
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;
|