Gravwell-Online/web-svelte/svelte.config.js
2022-03-07 00:00:10 -06:00

13 lines
292 B
JavaScript

import sveltePreprocess from "svelte-preprocess";
import * as sass from "sass";
export default {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: sveltePreprocess({
sass: {
sync: true,
implementation: sass
}
})
}