mirror of
https://github.com/midou36o/midou36o.github.io
synced 2024-11-10 03:52:02 +05:30
14 lines
358 B
TypeScript
14 lines
358 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import type { UserConfig } from 'vite';
|
|
import UnoCSS from 'unocss/vite';
|
|
import presetIcons from '@unocss/preset-icons';
|
|
|
|
const config: UserConfig = {
|
|
plugins: [sveltekit(), UnoCSS(),
|
|
/* Self note: Don't add a config between the (), it just overrides the external config. */
|
|
|
|
]
|
|
};
|
|
|
|
export default config;
|