We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5886d41 + edaf550 commit 8c0f9aeCopy full SHA for 8c0f9ae
frontend/.env.exapmle
@@ -3,4 +3,4 @@ AUTH_SECRET=
3
GITHUB_CLIENT_ID=
4
GITHUB_CLIENT_SECREAT=
5
AUTH_URL=
6
-BASE_URL=
+NEXT_PUBLIC_BASE_URL=
frontend/src/components/Post.tsx
@@ -18,7 +18,7 @@ import deletePost from '@/app/(main)/timeline/actions/deletePost';
18
import { useRouter } from 'next/navigation';
19
import { AnimatePresence, motion } from 'framer-motion';
20
21
-const baseUrl = process.env.BASE_URL ?? 'http://localhost:3000';
+const baseUrl = process.env.NEXT_PUBLIC_BASE_URL ?? 'http://localhost:3000';
22
23
// props の型定義
24
interface PostProps {
0 commit comments