blog-typescript-graphql/svelte.config.js

14 lines
268 B
JavaScript
Raw Permalink Normal View History

2021-12-31 10:18:12 +01:00
import adapter from '@sveltejs/adapter-static'
2021-12-31 09:39:03 +01:00
import preprocess from 'svelte-preprocess'
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: preprocess(),
kit: {
adapter: adapter(),
target: '#svelte',
},
}
export default config