gradio/ui/packages/workbench/svelte.config.js
2022-02-25 12:24:32 +00:00

21 lines
469 B
JavaScript

import adapter from "@sveltejs/adapter-auto";
import svelte_preprocess from "svelte-preprocess";
import tailwind from "tailwindcss";
import nested from "postcss-nested";
import autoprefix from "autoprefixer";
export default {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: [
svelte_preprocess({
postcss: { plugins: [tailwind, nested, autoprefix] }
})
],
kit: {
adapter: adapter()
}
};