gradio/js/workbench/svelte.config.js

21 lines
469 B
JavaScript
Raw Normal View History

2022-02-22 20:20:28 +08:00
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";
2022-02-25 20:24:32 +08:00
export default {
2022-02-22 20:20:28 +08:00
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: [
svelte_preprocess({
2022-02-23 19:17:41 +08:00
postcss: { plugins: [tailwind, nested, autoprefix] }
2022-02-22 20:20:28 +08:00
})
],
kit: {
adapter: adapter()
}
};