fix: resolve build errors and warnings

This commit is contained in:
2025-06-04 10:38:49 +09:00
parent 98ac9056c8
commit d0b5c19a83
4 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,6 @@
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
const nextConfig = { const nextConfig = {
reactStrictMode: true, reactStrictMode: true,
swcMinify: true,
// 他のカスタム設定をここに追加 // 他のカスタム設定をここに追加
}; };

View File

@ -1,3 +1,5 @@
"use client";
import React from "react"; import React from "react";
import "./globals.css"; import "./globals.css";
@ -17,7 +19,6 @@ export default function RootLayout({
<div className="container"> <div className="container">
<header className="py-4 border-b"> <header className="py-4 border-b">
<h1 className="text-2xl font-bold"></h1> <h1 className="text-2xl font-bold"></h1>
</h1>
</header> </header>
<main className="py-6">{children}</main> <main className="py-6">{children}</main>
<footer className="py-4 border-t text-center text-gray-500"> <footer className="py-4 border-t text-center text-gray-500">

View File

@ -1,3 +1,5 @@
"use client";
import React, { useState } from "react"; import React, { useState } from "react";
interface Episode { interface Episode {

View File

@ -1,3 +1,5 @@
"use client";
import React, { useEffect, useState } from "react"; import React, { useEffect, useState } from "react";
interface FeedItem { interface FeedItem {