mirror of
https://github.com/MadeBaruna/paimon-moe.git
synced 2024-11-22 06:57:32 +01:00
12 lines
229 B
JavaScript
12 lines
229 B
JavaScript
|
const sveltePreprocess = require('svelte-preprocess');
|
||
|
const postcss = require('./postcss.config');
|
||
|
|
||
|
const preprocess = sveltePreprocess({
|
||
|
defaults: {
|
||
|
style: 'postcss',
|
||
|
},
|
||
|
postcss,
|
||
|
});
|
||
|
|
||
|
module.exports = { preprocess };
|