Skip to content

Commit 83b22c6

Browse files
authoredMar 9, 2025
Merge pull request #17 from heroui-inc/fix/eng-2145-tailwindcss-config
fix: tailwindcss type
2 parents 140916e + 6b22301 commit 83b22c6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎tailwind.config.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {heroui} from "@heroui/theme"
22

33
/** @type {import('tailwindcss').Config} */
4-
module.exports = {
4+
const config = {
55
content: [
66
'./layouts/**/*.{js,ts,jsx,tsx,mdx}',
77
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
@@ -19,3 +19,5 @@ module.exports = {
1919
darkMode: "class",
2020
plugins: [heroui()],
2121
}
22+
23+
export default config;

0 commit comments

Comments
 (0)
Failed to load comments.