Launcher/svelte.config.js
Shadowner dee2b9a636 Refactoring Repository architecture + POC svelte
Only the interface is in state of work, there is no logic actually.
2023-03-11 17:12:38 +01:00

13 lines
260 B
JavaScript

import adapter from "@sveltejs/adapter-auto";
import { vitePreprocess } from "@sveltejs/kit/vite";
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter(),
},
preprocess: vitePreprocess(),
};
export default config;