allof-space/svelte.config.js

14 lines
284 B
JavaScript
Raw Normal View History

2022-10-06 18:00:27 -04:00
import adapter from '@sveltejs/adapter-node';
import preprocess from 'svelte-preprocess';
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: preprocess(),
kit: {
adapter: adapter({out: 'build'}),
csrf: false
}
};
export default config;