rating-room/svelte.config.js

18 lines
374 B
JavaScript
Raw 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({
postcss: true,
}),
2022-07-08 02:16:44 +00:00
kit: {
adapter: adapter()
}
};
export default config;