安装和配置 Gatsby。

更新: 我们在 canary 发布版本中已完全支持 React 19 和 Tailwind v4。有关更多信息,请参见 Tailwind v4 文档。

创建项目

首先,使用 create-gatsby 创建一个新的 Gatsby 项目:

  1. npm init gatsby

配置 Gatsby 项目以使用 TypeScript 和 Tailwind CSS

系统会询问几个问题来配置您的项目:

  1. 你希望你的站点叫什么名字?
  2. · your-app-name
  3. 你希望为你的站点创建一个什么名称的文件夹?
  4. · your-app-name
  5. 你会使用 JavaScript 还是 TypeScript
  6. · TypeScript
  7. 你会使用 CMS 吗?
  8. · 选择你想要的
  9. 你想安装一个样式系统吗?
  10. · Tailwind CSS
  11. 你想使用其他插件安装额外的功能吗?
  12. · 选择你想要的
  13. 我们可以开始吗? (Y/n) · Yes

编辑 tsconfig.json 文件

tsconfig.json 文件中添加以下代码以解析路径:

  1. {
  2. "compilerOptions": {
  3. // ...
  4. "baseUrl": ".",
  5. "paths": {
  6. "@/*": [
  7. "./src/*"
  8. ]
  9. }
  10. // ...
  11. }
  12. }

创建 gatsby-node.ts 文件

如果项目根目录下尚未存在 gatsby-node.ts 文件,请创建该文件,并将以下代码添加到 gatsby-node 文件中,以便您的应用能够解析路径:

  1. import * as path from "path"
  2. export const onCreateWebpackConfig = ({ actions }) => {
  3. actions.setWebpackConfig({
  4. resolve: {
  5. alias: {
  6. "@/components": path.resolve(__dirname, "src/components"),
  7. "@/lib/utils": path.resolve(__dirname, "src/lib/utils"),
  8. },
  9. },
  10. })
  11. }

运行 CLI

运行 shadcn-ui 初始化命令来设置您的项目:

pnpmnpmyarnbun

  1. pnpm dlx shadcn@latest init

配置 components.json

系统会询问几个问题来配置 components.json

  1. 你想使用 TypeScript 吗(推荐)? no / yes
  2. 你想使用哪种样式? Default
  3. 你希望使用什么颜色作为基础颜色? Slate
  4. 你的全局 CSS 文件在哪里? ./src/styles/globals.css
  5. 你想使用 CSS 变量来设置颜色吗? no / yes
  6. 你的 tailwind.config.js 文件在哪里? tailwind.config.js
  7. 配置组件的导入别名: @/components
  8. 配置 utils 的导入别名: @/lib/utils
  9. 你使用 React 服务器组件吗? no

就这样

现在,您可以开始向项目中添加组件。

pnpmnpmyarnbun

  1. pnpm dlx shadcn@latest add button

上述命令将会把 Button 组件添加到您的项目中。然后,您可以像这样导入它:

  1. import { Button } from "@/components/ui/button"
  2. export default function Home() {
  3. return (
  4. <div>
  5. <Button>Click me</Button>
  6. </div>
  7. )
  8. }