Next.jsのgetServerSideProps内で、ポート8080に建てたGoのバックエンドAPIからデータを取得しようとすると404 NotFoundになってしまいます。
Go APIはDocker上で建てており、8080:8080でマッピングしております
原因がわからず、ご教示いただきたいです。
よろしくお願いします。
posts/index.ts
js
1export async function getServerSideProps(context) { 2 3 const response = await fetch( 4 'http://localhost:8080/twirp/apiserver.post.PostService/ListPosts', 5 { 6 body: JSON.stringify(}), 7 headers: { 8 'Content-Type': 'application/json' 9 }, 10 method: 'POST' 11 } 12 ); 13 console.log(response) 14 15 16 // Pass data to the page via props 17 return {props: {data: response}} 18}
あなたの回答
tips
プレビュー