random-email/svelte.config.js

18 lines
433 B
JavaScript
Raw Permalink Normal View History

2021-07-12 18:00:08 +02:00
import preprocess from 'svelte-preprocess'
2022-01-23 16:00:16 +01:00
import adapter from '@sveltejs/adapter-auto'
2021-07-12 18:00:08 +02:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: preprocess(),
kit: {
adapter: adapter(),
// hydrate the <div id="svelte"> element in src/app.html
target: '#svelte',
},
}
export default config