sanifae/svelte.config.js

10 lines
171 B
JavaScript
Raw Permalink Normal View History

2023-03-15 02:04:33 -04:00
import adapter from '@sveltejs/adapter-node'
2023-01-28 20:38:52 -05:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
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