mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
16 lines
487 B
JavaScript
16 lines
487 B
JavaScript
const {nextui} = require("@nextui-org/theme/plugin");
|
|
|
|
// /** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./.storybook/welcome.stories.mdx",
|
|
"../components/**/src/**/*.{js,jsx,ts,tsx}",
|
|
"../components/**/stories/**/*.{js,jsx,ts,tsx}",
|
|
"../core/theme/src/components/**/*.{js,jsx,ts,tsx}",
|
|
"../core/theme/src/utils/**/*.{js,jsx,ts,tsx}",
|
|
"../core/theme/stories/**/*.{js,jsx,ts,tsx}",
|
|
],
|
|
darkMode: "class",
|
|
plugins: [nextui()],
|
|
};
|