# aichat **Repository Path**: xpsz/aichat ## Basic Information - **Project Name**: aichat - **Description**: 数字人+gpt - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-03-26 - **Last Updated**: 2024-03-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ``` pnpm i unplugin-auto-import ``` ```sh # 安装 pnpm install tailwindcss postcss autoprefixer -D npx tailwindcss init ``` ```js // 根目录下创建 postcss.config.cjs module.exports = { plugins: { tailwindcss: {}, autoprefixer: {}, }, } // src/main.ts import './assets/css/tailwind.css' // tailwind.css @tailwind base; @tailwind components; @tailwind utilities; // 自定义颜色 // tailwind.config.js { // ... theme: { extend: { colors: { ui: '#007bff', }, }, }, // ... } ```