contentlayerdev / contentlayerdev/next-contentlayer-example
Incorrect Tailwind config
Open
- Dominant language
- TypeScript
- Stars
- 104
- Forks
- 37
- PR merge metrics
- No merged PRs in 30d
Description
I won't fork for such a small change.
Your `tailwind.config.js` is pointing to the `pages` folder, but you are implementing next's experimental `app` folder so no tailwind styling is being generated.
```js
(...)
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
(...)
```
Should be
```js
(...)
content: [
"./app/**/*.{js,ts,jsx,tsx}",
(...)
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.