安装和配置 Remix。

创建项目

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

pnpm npmyarn bun

  1. pnpm create remix@latest my-app

运行 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

应用结构

注意: 该应用结构仅为建议。你可以根据需要将文件放置在任何位置。

  • 将 UI 组件放在 app/components/ui 文件夹中。
  • 你的自定义组件可以放在 app/components 文件夹中。
  • app/lib 文件夹包含所有工具函数。我们有一个 utils.ts 文件,里面定义了 cn 辅助函数。
  • app/tailwind.css 文件包含全局 CSS。

安装 Tailwind CSS

pnpm npmyarn bun

  1. pnpm add -D tailwindcss@latest autoprefixer@latest

然后,我们创建一个 postcss.config.js 文件:

  1. export default {
  2. plugins: {
  3. tailwindcss: {},
  4. autoprefixer: {},
  5. },
  6. }

最后,我们在 remix.config.js 文件中添加以下内容:

  1. /** @type {import('@remix-run/dev').AppConfig} */
  2. export default {
  3. ...
  4. tailwind: true,
  5. postcss: true,
  6. ...
  7. };

tailwind.css 添加到应用中

在你的 app/root.tsx 文件中,导入 tailwind.css 文件:

  1. import styles from "./tailwind.css?url"
  2. export const links: LinksFunction = () => [
  3. { rel: "stylesheet", href: styles },
  4. ...(cssBundleHref ? [{ rel: "stylesheet", href: cssBundleHref }] : []),
  5. ]

就这些

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

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