webservices-app/svelte.config.js

16 lines
552 B
JavaScript
Raw Normal View History

2024-08-09 16:21:51 +12:00
import adapter from '@sveltejs/adapter-auto';
2024-08-16 09:21:40 +12:00
import sveltePreprocess from 'svelte-preprocess';
2024-08-09 16:21:51 +12:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
adapter: adapter()
2024-08-16 09:21:40 +12:00
},
preprocess: sveltePreprocess()
2024-08-09 16:21:51 +12:00
};
export default config;