Skip to content

Commit f03c697

Browse files
committed
Add Tailwind configuration
1 parent 584fd68 commit f03c697

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

next.config.ts

-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ const nextConfig: NextConfig = {
55
output: 'export',
66
images: {
77
unoptimized: true,
8-
},
9-
// Add dark mode support
10-
theme: {
11-
darkMode: 'class',
128
}
139
};
1410

tailwind.config.js

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/** @type {import('tailwindcss').Config} */
2+
module.exports = {
3+
darkMode: 'class',
4+
content: [
5+
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
6+
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
7+
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
8+
],
9+
theme: {
10+
extend: {},
11+
},
12+
plugins: [],
13+
}

0 commit comments

Comments
 (0)