Files
optima/svelte.config.js
T
2026-01-24 17:02:42 -06:00

17 lines
317 B
JavaScript

import adapter from "@sveltejs/adapter-static";
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
const config = {
preprocess: vitePreprocess(),
kit: {
adapter: adapter({
pages: ".vite/renderer/main_window",
}),
router: {
type: "hash",
},
},
};
export default config;