mirror of
https://github.com/cupcakearmy/nicco.io.git
synced 2024-11-01 00:24:12 +01:00
14 lines
268 B
JavaScript
14 lines
268 B
JavaScript
import preprocess from 'svelte-preprocess'
|
|
import adapter from '@sveltejs/adapter-static'
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
preprocess: preprocess(),
|
|
kit: {
|
|
adapter: adapter(),
|
|
target: '#svelte',
|
|
},
|
|
}
|
|
|
|
export default config
|