mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
* style(): improved code edito ui / ux * fix(): fix build issue and use cn fn * theme variable updated to tailwind neutral gray * fix(): fix conflicts * fix lint errors --------- Co-authored-by: Jim Su <jimsu@protonmail.com>
15 lines
319 B
JavaScript
15 lines
319 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const { nextui } = require("@nextui-org/react");
|
|
export default {
|
|
content: [
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
darkMode: "class",
|
|
plugins: [
|
|
nextui({
|
|
defaultTheme: "dark",
|
|
}),
|
|
],
|
|
};
|