Fishie-Honesty-UI/svelte.config.js

17 lines
553 B
JavaScript
Raw Normal View History

2023-04-04 21:35:10 +05:00
import adapter from '@sveltejs/adapter-auto';
2023-04-05 11:17:43 +05:00
import { vitePreprocess } from '@sveltejs/kit/vite';
2023-04-04 21:35:10 +05:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
// If your environment is not supported or you settled on a specific environment, switch out the adapter.
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
adapter: adapter()
2023-04-05 11:17:43 +05:00
},
preprocess: vitePreprocess()
2023-04-04 21:35:10 +05:00
};
export default config;
2023-04-06 14:21:56 +05:00