import adapter from '@sveltejs/adapter-static'; import { sveltekit } from '@sveltejs/kit/vite'; import { defineConfig } from 'vite'; export default defineConfig({ plugins: [ sveltekit({ compilerOptions: { // Force runes mode for the project, except for libraries. Can be removed in svelte 6. runes: ({ filename }) => filename.split(/[\\/]/).includes('node_modules') ? undefined : true }, // Static adapter: builds the app into static HTML/JS/CSS that can be // served by any static HTTP server (nginx, python -m http.server, etc). adapter: adapter() }) ] });