mirror of
https://github.com/System-End/resolution.git
synced 2026-04-19 20:55:15 +00:00
16 lines
413 B
JavaScript
16 lines
413 B
JavaScript
import adapter from '@sveltejs/adapter-node';
|
|
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
// Consult https://svelte.dev/docs/kit/integrations
|
|
// for more information about preprocessors
|
|
preprocess: vitePreprocess(),
|
|
|
|
kit: {
|
|
// adapter-node creates a standalone Node server
|
|
adapter: adapter()
|
|
}
|
|
};
|
|
|
|
export default config;
|