mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-27 01:40:20 +08:00
d6b1247e21
* first migration commit * style comment * first mvp working with calculator * ali components * carousel * more changes * changes * add examples * examples support * more changes * interpretation * interpretation * submission state * first migration commit * style comment * first mvp working with calculator * ali components * carousel * more changes * changes * add examples * examples support * more changes * interpretation * interpretation * submission state * base image cropper * add image editor * css tweaks * remove dead code * finalise sketch tools * add webcam snapshot source * tweak config * tweak config * tweak config * tweaks * reset egg files * lockfile v2 * image tweaks * record audio from mic * add audio input components * audio tweaks * editable table * more table tweaks * sort columns * add row/col to table * add output table * fix broken paths * fix svelte build destination * fix svelte build destination again * fix gitignore * fix css * add themes * add all themes * snake core classnames * actually fix themes this time * merge changes Co-authored-by: Ali Abid <aliabid94@gmail.com> Co-authored-by: Ali Abid <aliabid@Alis-MacBook-Pro.local> Co-authored-by: pngwn <hello@pngwn.io>
19 lines
323 B
JavaScript
19 lines
323 B
JavaScript
const production = !process.env.ROLLUP_WATCH;
|
|
module.exports = {
|
|
purge: {
|
|
content: [
|
|
"./src/**/*.svelte",
|
|
],
|
|
enabled: production // disable purge in dev
|
|
},
|
|
mode: "jit",
|
|
darkMode: "class", // or 'media' or 'class'
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
variants: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|