next.js/test/integration/node-fetch-keep-alive/pages/api/json.js
json.js6 lines166 B
export default async function handler(_req, res) {
  const fetchRes = await fetch('http://localhost:44001')
  const props = await fetchRes.json()
  res.json(props)
}
Quest for Codev2.0.0
/
SIGN IN