修改 Dockerfile,解决构建时错误

This commit is contained in:
2025-04-21 13:59:49 +08:00
parent 97b14a5455
commit e905e88d1d
6 changed files with 39 additions and 46 deletions

View File

@@ -1,5 +1,5 @@
'use client'
import {useEffect, useState} from 'react'
import {Suspense, useEffect, useState} from 'react'
import {useSearchParams} from 'next/navigation'
import {IdentifyCallback} from '@/actions/auth/identify'
import {Card, CardContent} from '@/components/ui/card'
@@ -8,6 +8,14 @@ import {CheckCircle, AlertCircle, Loader2} from 'lucide-react'
export type PageProps = {}
export default function Page(props: PageProps) {
return (
<Suspense>
<Page1/>
</Suspense>
)
}
function Page1() {
const params = useSearchParams()
const success = params.get('success') === 'true'
const id = params.get('id') || ''

View File

@@ -14,7 +14,7 @@ function generateCaptchaText(length: number = 4): string {
}
// 哈希验证码文本并使用随机盐值
function hashCaptcha(text: string): { hash: string; salt: string } {
function hashCaptcha(text: string): { hash: string, salt: string } {
const salt = crypto.randomBytes(16).toString('hex')
const hash = crypto
.createHmac('sha256', salt)

View File

@@ -2,6 +2,7 @@ import {useCallback, useEffect, useState} from 'react'
import {Dialog, DialogContent, DialogFooter, DialogHeader, DialogTitle} from '@/components/ui/dialog'
import {Button} from '@/components/ui/button'
import {Input} from '@/components/ui/input'
import Image from 'next/image'
export type CaptchaProps = {
showCaptcha: boolean
@@ -44,7 +45,7 @@ export default function Captcha(props: CaptchaProps) {
</DialogHeader>
<div className="space-y-4">
<div className="flex justify-between items-center">
<img
<Image
src={captchaImage}
alt="验证码"
width={180}

View File

@@ -169,11 +169,11 @@ function Section(props: {
}
function Sec3Item(props: {
icon: string,
title: string,
icon: string
title: string
terms: {
icon: string,
text: string,
icon: string
text: string
}[]
}) {
return (