Read-it-later social network
at main 493 B view raw
1import adapter from '@sveltejs/adapter-netlify'; 2import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; 3 4/** @type {import('@sveltejs/kit').Config} */ 5const config = { 6 // Consult https://svelte.dev/docs/kit/integrations 7 // for more information about preprocessors 8 preprocess: vitePreprocess(), 9 10 kit: { 11 adapter: adapter(), 12 experimental: { 13 remoteFunctions: true 14 } 15 }, 16 17 compilerOptions: { 18 experimental: { 19 async: true 20 } 21 } 22}; 23 24export default config;