2022-07-23 20:52:23 +00:00
|
|
|
import { sveltekit } from '@sveltejs/kit/vite';
|
|
|
|
import preprocess from 'svelte-preprocess';
|
|
|
|
|
|
|
|
/** @type {import('vite').UserConfig} */
|
|
|
|
const config = {
|
|
|
|
plugins: [sveltekit({
|
|
|
|
useVitePreprocess: true,
|
2022-07-23 22:04:56 +00:00
|
|
|
|
|
|
|
noExternal: ['dayjs']
|
2022-07-23 20:52:23 +00:00
|
|
|
})],
|
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|