2025-12-26 14:26:37 +03:00
|
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
|
|
|
|
|
|
const config = {
|
2025-12-30 11:05:13 +03:00
|
|
|
preprocess: vitePreprocess(),
|
2025-12-26 14:26:37 +03:00
|
|
|
|
2025-12-30 11:05:13 +03:00
|
|
|
compilerOptions: {
|
2026-01-05 14:43:19 +03:00
|
|
|
runes: undefined,
|
2025-12-30 11:05:13 +03:00
|
|
|
},
|
2025-12-26 14:26:37 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default config;
|