mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-11 21:01:39 +00:00
14 lines
306 B
JavaScript
14 lines
306 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,
|
||
|
},
|
||
|
})
|
||
|
}
|