mirror of
https://github.com/oiov/vmail.git
synced 2026-06-05 21:03:00 +08:00
15 lines
430 B
TypeScript
15 lines
430 B
TypeScript
import type { Config } from "tailwindcss";
|
|
import typography from "@tailwindcss/typography";
|
|
|
|
export default {
|
|
// 修复:确保 Tailwind 扫描 index.html 和 src 目录下的所有相关文件以生成样式
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
// 迁移自 Remix 项目,用于邮件详情页面的文章样式
|
|
typography,
|
|
],
|
|
} satisfies Config;
|