remix
Tailwind Typography 插件深色模式适配方法
最简单的方法就是使用官方提供的 prose-invert: Copy
<div className="prose dark:prose-invert">
...
</div>
另一种方式:自定义颜色,例如我用的 shadcn/ui 想保持颜色统一,可以在 tailwind…
Remix 删除 URL 中为空的查询参数
避免 ?q= 这种查询参数为空的 URL 出现,可以在 loader 函数中检测并触发重定向。 Copy
async function clearEmptyParams(url: URL) {
let shouldRedirect = false
for (const…