Skip to content

Commit 5fa1d52

Browse files
committed
add
1 parent ee80b41 commit 5fa1d52

File tree

4 files changed

+5
-0
lines changed

4 files changed

+5
-0
lines changed

pages/_app.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import '../styles/globals.css';
2+
import '../src/styles/mdx.css'; // Additional styles for MDX content if needed
23
import type { AppProps } from 'next/app';
34
import Head from 'next/head';
45

postcss.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
module.exports = {
22
plugins: {
3+
'tailwindcss/nesting': {},
34
tailwindcss: {},
45
autoprefixer: {},
56
},

styles/globals.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* Import Tailwind CSS */
12
@tailwind base;
23
@tailwind components;
34
@tailwind utilities;

tailwind.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ module.exports = {
33
content: [
44
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
55
'./components/**/*.{js,ts,jsx,tsx,mdx}',
6+
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
67
'./src/**/*.{js,ts,jsx,tsx,mdx}',
8+
'./content/**/*.{md,mdx}',
79
],
810
darkMode: 'class',
911
theme: {

0 commit comments

Comments
 (0)