contentlayerdev / contentlayerdev/next-contentlayer-example

Incorrect Tailwind config

Open
#19 0 comments 0 reactions 0 assignees View on GitHub
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.