ekreten/svelte.config.js
2025-03-11 13:32:57 +01:00

11 lines
265 B
JavaScript

import adapter from '@sveltejs/adapter-auto';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
// adapter-auto supports various environments and will automatically choose the right adapter
adapter: adapter()
}
};
export default config;