usehooks-ts-demo/README.md
2023-08-21 17:11:33 +08:00

16 lines
299 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# NextJs + NextUI
1. 为什么 `pages/*` 添加NextUI后无效
后来发现,在`pages/*`中使用tailwind也无效原来原因是没有在css文件中引入tailwind
添加 `globals.css` 文件,在`_app.tsx`中导入
```css
@tailwind base;
@tailwind components;
@tailwind utilities;
```