kredens/svelte.config.js

22 lines
702 B
JavaScript
Raw Permalink Normal View History

2025-01-30 03:01:44 +00:00
import adapter from "@sveltejs/adapter-node";
2025-01-25 21:07:06 +00:00
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
2025-01-25 07:50:17 +00:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://svelte.dev/docs/kit/integrations
// for more information about preprocessors
preprocess: vitePreprocess(),
kit: {
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
2025-01-25 21:07:06 +00:00
adapter: adapter(),
},
2025-01-30 03:01:44 +00:00
compilerOptions: {
runes: true,
}
2025-01-25 07:50:17 +00:00
};
export default config;