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
|
|
|
// Consult https://svelte.dev/docs/kit/integrations
|
|
|
|
|
// for more information about preprocessors
|
|
|
|
|
preprocess: vitePreprocess(),
|
2025-12-26 14:26:37 +03:00
|
|
|
|
2025-12-30 11:05:13 +03:00
|
|
|
compilerOptions: {
|
|
|
|
|
runes: true,
|
|
|
|
|
},
|
2025-12-26 14:26:37 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default config;
|