my-portfolio/svelte.config.js

16 lines
562 B
JavaScript
Raw Normal View History

2024-04-25 23:01:30 +00:00
import adapter from '@sveltejs/adapter-node';
2024-04-05 18:42:45 +00:00
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
2024-04-03 20:30:32 +00:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
// If your environment is not supported or you settled on a specific environment, switch out the adapter.
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
adapter: adapter()
2024-04-05 18:42:45 +00:00
},
preprocess: vitePreprocess()
2024-04-03 20:30:32 +00:00
};
export default config;