svelte-testing/svelte.config.js

17 lines
379 B
JavaScript
Raw Normal View History

2022-07-01 15:00:51 +02:00
import adapter from '@sveltejs/adapter-node';
2022-07-04 16:27:11 +02:00
import sveltePreprocess from 'svelte-preprocess';
2022-07-01 13:37:59 +02:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
2022-07-01 16:06:41 +02:00
preprocess: [
2022-07-04 16:27:11 +02:00
sveltePreprocess({postcss: true})
2022-07-01 16:06:41 +02:00
],
2022-07-01 13:37:59 +02:00
kit: {
2022-07-03 21:45:45 +02:00
adapter: adapter(),
},
2022-07-01 13:37:59 +02:00
};
export default config;