mirror of
https://github.com/AthanorLabs/atomic-swap.git
synced 2026-01-09 14:18:03 -05:00
16 lines
345 B
JavaScript
16 lines
345 B
JavaScript
import preprocess from "svelte-preprocess";
|
|
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
|
|
|
|
export default {
|
|
// Consult https://svelte.dev/docs#compile-time-svelte-preprocess
|
|
// for more information about preprocessors
|
|
preprocess: [
|
|
vitePreprocess(),
|
|
/*
|
|
preprocess({
|
|
postcss: true,
|
|
}),
|
|
*/
|
|
],
|
|
};
|