LogFrog/frontend/svelte.config.js

13 lines
256 B
JavaScript
Raw Normal View History

2023-10-03 11:23:49 -06:00
import adapter from '@sveltejs/adapter-auto';
2023-10-03 11:48:45 -06:00
import { vitePreprocess } from '@sveltejs/kit/vite';
2023-10-03 11:23:49 -06:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
2023-10-03 11:48:45 -06:00
adapter: adapter()
},
preprocess: vitePreprocess()
};
2023-10-03 11:23:49 -06:00
export default config;