web_lib

Common web application libraries
git clone https://radroots.dev/git/web_lib.git
Log | Files | Refs | LICENSE

svelte.config.js (234B)


      1 import adapter from '@sveltejs/adapter-auto';
      2 import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
      3 
      4 const config = {
      5     preprocess: vitePreprocess(),
      6     kit: {
      7         adapter: adapter(),
      8     },
      9 };
     10 
     11 export default config;