Files
oki-podcast-reader/svelte.config.js
T

16 lines
368 B
JavaScript
Raw Normal View History

2023-02-21 22:09:10 +00:00
import adapter from '@sveltejs/adapter-auto';
import { vitePreprocess } from '@sveltejs/kit/vite';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
preprocess: vitePreprocess(),
kit: {
2023-02-22 16:43:52 +00:00
adapter: adapter(),
},
2023-02-21 22:09:10 +00:00
};
export default config;