fix: resolve build errors and warnings
This commit is contained in:
@ -1,7 +1,6 @@
|
|||||||
/** @type {import('next').NextConfig} */
|
/** @type {import('next').NextConfig} */
|
||||||
const nextConfig = {
|
const nextConfig = {
|
||||||
reactStrictMode: true,
|
reactStrictMode: true,
|
||||||
swcMinify: true,
|
|
||||||
// 他のカスタム設定をここに追加
|
// 他のカスタム設定をここに追加
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -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">
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
import React, { useState } from "react";
|
import React, { useState } from "react";
|
||||||
|
|
||||||
interface Episode {
|
interface Episode {
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
import React, { useEffect, useState } from "react";
|
import React, { useEffect, useState } from "react";
|
||||||
|
|
||||||
interface FeedItem {
|
interface FeedItem {
|
||||||
|
Reference in New Issue
Block a user