webui-ng/svelte.config.js
2025-05-03 18:21:06 +02:00

13 lines
283 B
JavaScript

import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
const config = {
preprocess: vitePreprocess(),
kit: { adapter: adapter({
fallback: 'index.html',
precompress: false,
strict: true
}) }
};
export default config;