mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-27 02:30:17 +08:00
21 lines
469 B
JavaScript
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()
|
|
}
|
|
};
|