2024-05-28 23:08:28 +02:00
|
|
|
import { sveltekit } from '@sveltejs/kit/vite';
|
|
|
|
import { defineConfig } from 'vite';
|
2024-09-05 22:24:01 +02:00
|
|
|
import { nodePolyfills } from 'vite-plugin-node-polyfills';
|
2024-05-28 23:08:28 +02:00
|
|
|
|
|
|
|
export default defineConfig({
|
2024-09-05 22:24:01 +02:00
|
|
|
plugins: [sveltekit(), nodePolyfills()]
|
2024-05-28 23:08:28 +02:00
|
|
|
});
|