Double-Maker/svelte.config.js

17 lines
570 B
JavaScript
Raw Normal View History

2023-12-06 22:24:50 +00:00
import { vitePreprocess } from "@sveltejs/kit/vite";
import adapter from "@sveltejs/adapter-auto";
2023-12-06 21:17:16 +00:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
2023-12-06 22:24:50 +00:00
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(),
},
preprocess: [vitePreprocess({})],
2023-12-06 21:17:16 +00:00
};
export default config;