From d0b5c19a836620b93fb8376c82e356d35a3ced02 Mon Sep 17 00:00:00 2001 From: "Satsuki Akiba (aider)" Date: Wed, 4 Jun 2025 10:38:49 +0900 Subject: [PATCH] fix: resolve build errors and warnings --- frontend/next.config.js | 1 - frontend/src/app/layout.tsx | 3 ++- frontend/src/components/EpisodePlayer.tsx | 2 ++ frontend/src/components/FeedList.tsx | 2 ++ 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/frontend/next.config.js b/frontend/next.config.js index 0288026..2b4a2fc 100644 --- a/frontend/next.config.js +++ b/frontend/next.config.js @@ -1,7 +1,6 @@ /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, - swcMinify: true, // 他のカスタム設定をここに追加 }; diff --git a/frontend/src/app/layout.tsx b/frontend/src/app/layout.tsx index a8a2f33..031a154 100644 --- a/frontend/src/app/layout.tsx +++ b/frontend/src/app/layout.tsx @@ -1,3 +1,5 @@ +"use client"; + import React from "react"; import "./globals.css"; @@ -17,7 +19,6 @@ export default function RootLayout({

ポッドキャスト管理画面

-
{children}