mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
23 lines
527 B
TypeScript
23 lines
527 B
TypeScript
import { vitePreprocess, type SvelteConfig } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
const config: SvelteConfig = {
|
|
preprocess: vitePreprocess(),
|
|
compilerOptions: {
|
|
// TODO: Enforce runes mode on all files once Inertia v3 https://github.com/inertiajs/inertia/tree/3.x is released
|
|
// runes: true,
|
|
discloseVersion: false,
|
|
modernAst: true,
|
|
dev: true,
|
|
experimental: {
|
|
async: true,
|
|
}
|
|
},
|
|
vitePlugin: {
|
|
inspector: {
|
|
showToggleButton: 'always',
|
|
toggleButtonPos: 'top-right'
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|