Have your say in Community Polls: What was/is your greatest motivation to start your own business?
Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

Remix dev server cannot reach cloudflare

Solved

Remix dev server cannot reach cloudflare

JanGebauer
Shopify Partner
6 0 1

I am running more or less the basic setup from the App tutorial using Remix. Today, I started getting an error when I start the dev server using npm run dev. This prevents me from doing any development.

 

Here is the log

21:55:48 │ graphiql   │ GraphiQL server started on port 3457
21:55:49 │ remix      │
21:55:49 │ remix      │  💿  remix dev
21:55:49 │ remix      │
21:55:49 │ remix      │  info  building...
21:55:50 │ remix      │  info  built (755ms)
21:55:50 │ remix      │ [shopify-api/INFO] version 9.3.0, environment Remix
21:55:50 │ remix      │ [remix-serve] http://localhost:35611 (http://192.168.0.11:35611)
21:55:50 │ remix      │ Could not reach Remix dev server at https://generating-trend-beginning-singing.trycloudflare.com/ping
21:55:50 │ remix      │
21:55:50 │ remix      │ /home/yan/code/discounter/node_modules/@remix-run/web-fetch/src/fetch.js:112
21:55:50 │ remix      │                         reject(new FetchError(`request to ${request.url} failed, reason: ${err.message}`, 'system', err));
21:55:50 │ remix      │           ^
21:55:50 │ remix      │ FetchError: request to https://generating-trend-beginning-singing.trycloudflare.com/ping failed, reason: getaddrinfo ENOTFOUND
generating-trend-beginning-singing.trycloudflare.com
21:55:50 │ remix      │     at ClientRequest.<anonymous> (/home/yan/code/discounter/node_modules/@remix-run/web-fetch/src/fetch.js:112:11)
21:55:50 │ remix      │     at ClientRequest.emit (node:events:530:35)
21:55:50 │ remix      │     at TLSSocket.socketErrorListener (node:_http_client:495:9)
21:55:50 │ remix      │     at TLSSocket.emit (node:events:518:28)
21:55:50 │ remix      │     at emitErrorNT (node:internal/streams/destroy:169:8)
21:55:50 │ remix      │     at emitErrorCloseNT (node:internal/streams/destroy:128:3)
21:55:50 │ remix      │     at processTicksAndRejections (node:internal/process/task_queues:82:21)

Any ideas how to debug this?

Accepted Solution (1)

devrex
Shopify Partner
12 1 1

This is an accepted solution.

Hi,

Try logout and login again

npm run shopify auth logout
npm run dev

 

View solution in original post

Replies 3 (3)

JanGebauer
Shopify Partner
6 0 1

Running 

npm run dev -- --reset

and creating a new app toml config fixed this. Unclear why.

devrex
Shopify Partner
12 1 1

This is an accepted solution.

Hi,

Try logout and login again

npm run shopify auth logout
npm run dev

 

JanGebauer
Shopify Partner
6 0 1

Hello, this is better than my solution but it doesn't seem to persist through restarts. Thank you, however.