rating-room/svelte.config.js

18 lines
364 B
JavaScript
Raw Permalink Normal View History

2022-07-08 02:16:44 +00: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-07-08 02:43:30 +00:00
preprocess: preprocess({
2022-07-08 05:26:43 +00:00
postcss: true
}),
2022-07-08 02:16:44 +00:00
kit: {
adapter: adapter()
2022-07-08 02:16:44 +00:00
}
};
export default config;