11 lines
249 B
JavaScript
11 lines
249 B
JavaScript
import sveltePreprocess from "svelte-preprocess";
|
|
|
|
export default {
|
|
// Consult https://github.com/sveltejs/svelte-preprocess
|
|
// for more information about preprocessors
|
|
preprocess: [
|
|
sveltePreprocess({
|
|
postcss: true,
|
|
}),
|
|
],
|
|
};
|