Portfolio/frontend/svelte.config.js
2022-12-04 21:29:09 +01:00

15 lines
408 B
JavaScript

import adapter from '@sveltejs/adapter-auto';
import preprocess from 'svelte-preprocess';
import { windi } from 'svelte-windicss-preprocess';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: [preprocess(), windi({})],
kit: {
adapter: adapter()
}
};
export default config;