mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-18 09:31:05 +00:00
13 lines
306 B
JavaScript
13 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,
|
|
},
|
|
})
|
|
}
|