File size: 493 Bytes
143b783 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import svelte_preprocess from "svelte-preprocess";
import tailwind from "tailwindcss";
import nested from "postcss-nested";
import autoprefix from "autoprefixer";
import tw_config from "./tailwind.config.cjs";
/** @type {import('@sveltejs/kit').Config} */
export default {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: [
svelte_preprocess({
postcss: { plugins: [tailwind(tw_config), nested, autoprefix] }
})
]
};
|