mirror of
https://github.com/LukeHagar/sveltekit-og.git
synced 2025-12-06 12:47:49 +00:00
12 lines
202 B
TypeScript
12 lines
202 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import type { UserConfig } from 'vite';
|
|
|
|
const config: UserConfig = {
|
|
plugins: [sveltekit()],
|
|
define: {
|
|
_a: 'undefined'
|
|
}
|
|
};
|
|
|
|
export default config;
|