next修复CVE-2025-66478漏洞,编程代理改成claude
This commit is contained in:
@@ -29,7 +29,7 @@ export function WelcomeDialog({ open, onOpenChange }: WelcomeDialogProps) {
|
||||
<DialogTitle className="text-2xl">欢迎您,开发者</DialogTitle>
|
||||
</div>
|
||||
<DialogDescription className="pt-4 text-base">
|
||||
{/* 内容暂时没想好,先不实现 */}
|
||||
感谢您选择 Hair Keeper 作为开发底座,祝您开发顺利!
|
||||
</DialogDescription>
|
||||
</DialogHeader>
|
||||
<div className="flex justify-end gap-2 pt-4">
|
||||
|
||||
@@ -13,7 +13,7 @@ export function getRedisClient() {
|
||||
const redisPassword = process.env.REDIS_PASSWORD
|
||||
|
||||
redisClient = new Redis({
|
||||
host: 'localhost',
|
||||
host: process.env.REDIS_HOST || 'localhost',
|
||||
port: parseInt(redisPort, 10),
|
||||
password: redisPassword,
|
||||
maxRetriesPerRequest: null, // BullMQ 推荐设置
|
||||
|
||||
Reference in New Issue
Block a user