2023-04-26 12:20:01 -04:00
|
|
|
import adapter from '@sveltejs/adapter-node';
|
|
|
|
import { vitePreprocess } from '@sveltejs/kit/vite';
|
|
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
|
|
|
preprocess: vitePreprocess(),
|
|
|
|
|
|
|
|
kit: {
|
2023-08-23 22:06:53 -04:00
|
|
|
adapter: adapter()
|
2023-04-26 12:20:01 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|