产品页面跳转与性能优化

This commit is contained in:
2025-03-24 11:45:54 +08:00
parent 906693be10
commit 60155e9d9d
8 changed files with 230 additions and 198 deletions

View File

@@ -1,12 +0,0 @@
import {NextRequest, NextResponse} from 'next/server'
import {cookies} from 'next/headers'
export async function GET(req: NextRequest) {
const store = await cookies()
store.set('test','test')
return NextResponse.json(JSON.stringify({
'test': 'value',
}))
}