svelte.sk-auth/app/svelte.config.js

16 lines
308 B
JavaScript
Raw Normal View History

import preprocess from "svelte-preprocess";
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: [
preprocess({
postcss: true,
}),
],
};
export default config;