mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-27 02:30:17 +08:00
37c8ee3974
* add static src to modify sketch * add themes * update all tooling to use the new frontend dir * revert formatting * update template index * fix formatting * fix scripts for new ui folder * remoce console.logs * remoce console.logs * ensure dataeries clear works correctly * ensure label chart has correct width * remove cropper when component is destroyed * update tailwind * remove console logs * fix formatting Co-authored-by: Ali Abid <aliabid94@gmail.com>
14 lines
230 B
JavaScript
14 lines
230 B
JavaScript
const production = !process.env.ROLLUP_WATCH;
|
|
module.exports = {
|
|
content: ["./src/**/*.svelte"],
|
|
mode: "jit",
|
|
darkMode: "class", // or 'media' or 'class'
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
variants: {
|
|
extend: {}
|
|
},
|
|
plugins: []
|
|
};
|