lan-party-frontend/svelte.config.js

16 lines
364 B
JavaScript
Raw Permalink Normal View History

2022-08-31 08:50:12 +02:00
import adapter from '@sveltejs/adapter-auto';
import preprocess from 'svelte-preprocess';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
2022-09-01 16:03:36 +02:00
preprocess: preprocess({ postcss: true }),
2022-08-31 08:50:12 +02:00
kit: {
adapter: adapter()
}
};
export default config;