mirror of
https://github.com/TabbyML/tabby
synced 2024-11-22 00:08:06 +00:00
15 lines
334 B
JavaScript
Vendored
15 lines
334 B
JavaScript
Vendored
// tailwind.config.js
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
corePlugins: {
|
|
preflight: false, // disable Tailwind's reset
|
|
},
|
|
content: ["./src/**/*.{js,jsx,ts,tsx}", "./docs/**/*.mdx", "./blog/**/*.mdx"],
|
|
darkMode: ['class', '[data-theme="dark"]'],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|