Gravwell-Online/web-svelte/svelte.config.js
2021-12-15 00:14:12 -06:00

13 lines
291 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
}
})
}