mirror of
https://github.com/cupcakearmy/random-email.git
synced 2024-12-22 07:56:27 +00:00
18 lines
433 B
JavaScript
18 lines
433 B
JavaScript
import preprocess from 'svelte-preprocess'
|
|
import adapter from '@sveltejs/adapter-auto'
|
|
|
|
/** @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
|