We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60e2077 commit a270d07Copy full SHA for a270d07
src/app/music/[music_id]/page.tsx
@@ -24,7 +24,7 @@ export async function generateMetadata({
24
const title = music.title;
25
const artist = music.artist;
26
const fullTitle = `${title} | by ${artist}`; // 例: "Next.jsでメタデータを生成する | あなたのサイト名"
27
- const description = "Music: ${title}";
+ const description = `Music: ${title}`;
28
const og_image_url = `${slug}/${music.jacketUrl?.split("/").slice(-1)[0]}`;
29
const metadata: Metadata = {
30
metadataBase: new URL(
0 commit comments