mirror of
https://github.com/Devolutions/IronRDP.git
synced 2025-08-04 15:18:17 +00:00
10 lines
295 B
JavaScript
10 lines
295 B
JavaScript
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
export default {
|
|
// Consult https://svelte.dev/docs#compile-time-svelte-preprocess
|
|
// for more information about preprocessors
|
|
compilerOptions: {
|
|
customElement: true,
|
|
},
|
|
preprocess: vitePreprocess(),
|
|
};
|