Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Main #384

Merged
merged 26 commits into from
May 20, 2024
Merged

Main #384

Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
ac3aed9
Merge pull request #298 from fuma-nama/dev
fuma-nama Mar 22, 2024
1b5571a
Merge pull request #300 from fuma-nama/dev
fuma-nama Mar 23, 2024
8b07f66
Merge pull request #304 from fuma-nama/dev
fuma-nama Mar 26, 2024
b7d9cdd
Merge pull request #313 from fuma-nama/dev
fuma-nama Apr 3, 2024
33e66c0
Merge pull request #318 from fuma-nama/dev
fuma-nama Apr 13, 2024
85c5807
Merge pull request #319 from fuma-nama/dev
fuma-nama Apr 17, 2024
64b61d1
Merge pull request #325 from fuma-nama/dev
fuma-nama Apr 26, 2024
90c4c40
Merge pull request #327 from fuma-nama/dev
fuma-nama Apr 26, 2024
09d2390
Merge pull request #329 from fuma-nama/dev
fuma-nama Apr 26, 2024
2ee14d5
Merge pull request #332 from fuma-nama/dev
fuma-nama Apr 27, 2024
73e0109
Merge pull request #336 from fuma-nama/dev
fuma-nama Apr 27, 2024
cd20fb1
Merge pull request #339 from fuma-nama/dev
fuma-nama May 1, 2024
f3ed6d5
Merge pull request #341 from fuma-nama/dev
fuma-nama May 2, 2024
86e7b0b
Merge pull request #342 from fuma-nama/dev
fuma-nama May 2, 2024
d3746d2
Merge pull request #347 from fuma-nama/dev
fuma-nama May 6, 2024
6692ed4
Merge pull request #361 from fuma-nama/dev
fuma-nama May 12, 2024
9424b89
Merge pull request #363 from fuma-nama/dev
fuma-nama May 13, 2024
1afe26b
Merge pull request #368 from fuma-nama/dev
fuma-nama May 15, 2024
9fd6435
Merge pull request #372 from fuma-nama/dev
fuma-nama May 15, 2024
5484af7
Merge pull request #375 from fuma-nama/dev
fuma-nama May 18, 2024
a1d6f5f
Merge pull request #376 from fuma-nama/dev
fuma-nama May 18, 2024
9f77e52
Merge pull request #377 from fuma-nama/dev
fuma-nama May 18, 2024
dfca26d
Merge pull request #379 from fuma-nama/dev
fuma-nama May 18, 2024
3bf4f37
Merge pull request #380 from fuma-nama/dev
fuma-nama May 18, 2024
dd54b67
Docs(ui/index.mdx): FAQ Turborepo Styling Missing Solution
WillKirkmanM May 19, 2024
d40e907
Merge pull request #383 from WillKirkmanM/patch-1
fuma-nama May 19, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions apps/docs/content/docs/ui/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,32 @@ npm run dev
- Built on App Router
- Use it in an existing Next.js project, without refactoring anything.
</Accordion>
<Accordion id='fix-turborepo-styling' title="How to fix Turborepo stylings not being applied?">

Turborepo, keeps all installed packages from the `apps` folder in the root directory of your project.
This means that when using Tailwind, it will not be able to find the `DocsLayout` from the package `fumadocs-ui`
which contains the styling.

To fix this, edit the `tailwind.config.js` and replace `./node_modules` with `../../node_modules` in the `content` section.

Before:
```
content: [
'./node_modules/fumadocs-ui/dist/**/*.js',
'./components/**/*.{ts,tsx}',
...
],
```

After:
```
content: [
'../../node_modules/fumadocs-ui/dist/**/*.js',
'./components/**/*.{ts,tsx}',
...
],
```
</Accordion>
<Accordion id='fix-supports-color' title="How to fix 'supports-color' error?">

If you got this error:
Expand Down
Loading