sanifae/svelte.config.js

16 lines
282 B
JavaScript
Raw Normal View History

2023-03-15 02:04:33 -04:00
import adapter from '@sveltejs/adapter-node'
2023-03-15 02:09:10 -04:00
import preprocess from 'svelte-preprocess';
2023-01-28 20:38:52 -05:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
2023-03-15 02:09:04 -04:00
preprocess: [
preprocess({
postcss: true
})
],
2023-03-15 02:04:33 -04:00
kit: {
adapter: adapter(),
}
}
2023-01-28 20:38:52 -05:00
2023-03-15 02:04:33 -04:00
export default config