10 lines
364 B
JavaScript
10 lines
364 B
JavaScript
import sveltePreprocess from 'svelte-preprocess'
|
|
import seqPreprocessor from 'svelte-sequential-preprocessor'
|
|
import { preprocessThrelte } from '@threlte/preprocess'
|
|
|
|
export default {
|
|
// Consult https://github.com/sveltejs/svelte-preprocess
|
|
// for more information about preprocessors
|
|
preprocess: seqPreprocessor([sveltePreprocess(), preprocessThrelte()])
|
|
}
|