安装和配置 Vite。

更新: 我们在 canary 版本中已添加对 React 19 和 Tailwind v4 的完整支持。有关更多信息,请参见 Tailwind v4 文档。

创建项目

首先,使用 vite 创建一个新的 React 项目:

pnpm npmyarn bun

  1. pnpm create vite@latest

添加 Tailwind 及其配置

安装 tailwindcss 及其同行依赖项,然后生成 tailwind.config.jspostcss.config.js 文件:

pnpm npmyarn bun

  1. pnpm add -D tailwindcss postcss autoprefixer

pnpm npmyarn bun

  1. pnpm dlx tailwindcss init -p

在你的主 CSS 文件中(我们这里是 src/index.css),添加以下导入:

  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. /* ... */

tailwind.config.js 中配置 tailwind 的模板路径:

  1. /** @type {import('tailwindcss').Config} */
  2. module.exports = {
  3. content: ["./index.html", "./src/**/*.{ts,tsx,js,jsx}"],
  4. theme: {
  5. extend: {},
  6. },
  7. plugins: [],
  8. }

编辑 tsconfig.json 文件

当前版本的 Vite 将 TypeScript 配置分为三个文件,其中两个需要编辑。将 baseUrlpaths 属性添加到 tsconfig.jsontsconfig.app.json 文件的 compilerOptions 部分:

  1. {
  2. "files": [],
  3. "references": [
  4. {
  5. "path": "./tsconfig.app.json"
  6. },
  7. {
  8. "path": "./tsconfig.node.json"
  9. }
  10. ],
  11. "compilerOptions": {
  12. "baseUrl": ".",
  13. "paths": {
  14. "@/*": ["./src/*"]
  15. }
  16. }
  17. }

编辑 tsconfig.app.json 文件

将以下代码添加到 tsconfig.app.json 文件,以便你的 IDE 能解析路径:

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

更新 vite.config.ts

将以下代码添加到 vite.config.ts,以便你的应用程序能够正确解析路径:

pnpm npmyarn bun

  1. pnpm add -D @types/node
  1. import path from "path"
  2. import react from "@vitejs/plugin-react"
  3. import { defineConfig } from "vite"
  4. export default defineConfig({
  5. plugins: [react()],
  6. resolve: {
  7. alias: {
  8. "@": path.resolve(__dirname, "./src"),
  9. },
  10. },
  11. })

运行 CLI

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

pnpm npmyarn bun

  1. pnpm dlx shadcn@latest init

配置 components.json

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

  1. 你想使用什么样的样式? New York
  2. 你希望使用什么颜色作为基础颜色? Zinc
  3. 你是否要使用 CSS 变量来管理颜色? no / yes

就这些

现在,你可以开始将组件添加到你的项目中。

pnpm npmyarn bun

  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. }