mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-05-27 18:34:07 +03:00
9 lines
169 B
TypeScript
9 lines
169 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import type { UserConfig } from 'vite';
|
|
|
|
const config: UserConfig = {
|
|
plugins: [sveltekit()]
|
|
};
|
|
|
|
export default config;
|