Skip to content

Commit 8c0f9ae

Browse files
authored
Merge pull request #152 from kc3hack/RAIT-09/develop
BASE_URL環境変数名修正
2 parents 5886d41 + edaf550 commit 8c0f9ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/.env.exapmle

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ AUTH_SECRET=
33
GITHUB_CLIENT_ID=
44
GITHUB_CLIENT_SECREAT=
55
AUTH_URL=
6-
BASE_URL=
6+
NEXT_PUBLIC_BASE_URL=

frontend/src/components/Post.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import deletePost from '@/app/(main)/timeline/actions/deletePost';
1818
import { useRouter } from 'next/navigation';
1919
import { AnimatePresence, motion } from 'framer-motion';
2020

21-
const baseUrl = process.env.BASE_URL ?? 'http://localhost:3000';
21+
const baseUrl = process.env.NEXT_PUBLIC_BASE_URL ?? 'http://localhost:3000';
2222

2323
// props の型定義
2424
interface PostProps {

0 commit comments

Comments
 (0)