import adapter from '@sveltejs/adapter-node'; import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; /** @type {import('@sveltejs/kit').Config} */ const config = { // Consult https://svelte.dev/docs/kit/integrations // for more information about preprocessors preprocess: vitePreprocess(), kit: { // adapter-node statt adapter-auto: Das Deployment läuft über Coolify, // das adapter-auto nicht erkennt ("Could not detect a supported // production environment") — es entstand dann gar kein build/, und der // Startbefehl "node build" scheiterte sofort. adapter: adapter(), alias: { "@/*": "./src/lib/*", }, } }; export default config;