hypnagaga/svelte.config.js
2023-04-26 15:07:27 +01:00

14 lines
274 B
JavaScript

import autoprefixer from 'autoprefixer';
import preprocess from 'svelte-preprocess';
const config = {
preprocess: preprocess({
preserve: ['ld+json'],
scss: { quietDeps: true },
postcss: {
plugins: [autoprefixer],
},
}),
};
export default config;