diff --git a/packages/frontend/src/pages/song/[id]/info.astro b/packages/frontend/src/pages/song/[id]/info.astro index 673b714..e3f4fd3 100644 --- a/packages/frontend/src/pages/song/[id]/info.astro +++ b/packages/frontend/src/pages/song/[id]/info.astro @@ -20,8 +20,6 @@ const postgresConfig = { password: databasePassword, }; -console.log(postgresConfig) - // 路由参数 const { id } = Astro.params; const { Client } = pg; @@ -96,7 +94,6 @@ if (!aidExists) { return new Response(null, { status: 404 }); } const videoInfo = await getVideoMetadata(aid); -console.log(videoInfo); const snapshots = await getVideoSnapshots(aid); client.end(); @@ -131,7 +128,7 @@ interface Snapshot { - +