Files
insta-recipe/svelte.config.js
Giancarmine Salucci 49bccf8f15 simplify
2026-02-18 01:21:44 +01:00

18 lines
460 B
JavaScript

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: adapter(),
serviceWorker: {
register: true // Enable SvelteKit's native service worker registration
}
}
};
export default config;