Skip to content

NextJS - fetch request throwing TypeError: fetch failed #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
AllThingsSmitty opened this issue Apr 26, 2024 · 3 comments
Open

NextJS - fetch request throwing TypeError: fetch failed #10

AllThingsSmitty opened this issue Apr 26, 2024 · 3 comments

Comments

@AllThingsSmitty
Copy link

I'm on video #213 and when I attempt to perform the fetch of https://bytegrad.com/course-assets/projects/evento/api/events?city=austin I get the following error:

Internal error: TypeError: fetch failed

I'm running Node 21.6.2 for the project so I'm not sure what the issue might be. The full error output is below. Do you have any thoughts so I can continue with the video and project? I've included the package.json items further below.

 ⨯ Internal error: TypeError: fetch failed
    at node:internal/deps/undici/undici:12443:11
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
Cause: Error: read ECONNRESET
    at TLSWrap.onStreamRead (node:internal/stream_base_commons:217:20)
    at TLSWrap.callbackTrampoline (node:internal/async_hooks:130:17) {
  errno: -4077,
  code: 'ECONNRESET',
  syscall: 'read'
}
 ⨯ Internal error: TypeError: fetch failed
    at node:internal/deps/undici/undici:12443:11
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
digest: "3079390902"

package.json:

{
  "name": "evento",
  "version": "0.1.0",
  "private": true,
  "scripts": {
    "dev": "next dev",
    "build": "next build",
    "start": "next start",
    "lint": "next lint"
  },
  "dependencies": {
    "clsx": "^2.1.1",
    "framer-motion": "^10.16.4",
    "next": "14.0.1",
    "react": "^18",
    "react-dom": "^18"
  },
  "devDependencies": {
    "@types/node": "^20",
    "@types/react": "^18",
    "@types/react-dom": "^18",
    "autoprefixer": "^10.0.1",
    "eslint": "^8",
    "eslint-config-next": "14.0.1",
    "postcss": "^8",
    "tailwindcss": "^3.3.0",
    "typescript": "^5"
  }
}
@ByteGrad
Copy link
Owner

ByteGrad commented Apr 26, 2024 via email

@AllThingsSmitty
Copy link
Author

I was able to get past that issue by adding a .env.local file to the project with the following value:

NODE_TLS_REJECT_UNAUTHORIZED = "0"

Not sure how much further that will get me but it works for now.

@AllThingsSmitty
Copy link
Author

Looks like that only got me a few videos further before the issue came up again with future fetch requests.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants