Hey developers,
I am a new in shopify development. I am getting error "Could not start Cloudflare tunnel: Failed to create new quic connection error=“failed to dial to edge with quic: timeout: no recent │
│ network activity” " when run “npm run dev” command in terminal to start local development.
what are the possible reasons behind this error and please suggest some solutions to fix it.
thankyou!
hi @VaibhavJain ,
You can use ngrok tunnel instead of the default cloudflare tunnels.
You can download and install ngrok from here
Ngrok - download
You need to create a free account in ngrok. After installing you can start the tunnel using this command
ngrok http
For further information refer to ngrok docs [here](https://ngrok.com/docs/http/)
After installing and successfully running the tunnel server, you can use the --tunnel-url flag in the npm run command to use the ngrok tunnel server instead of Cloudflare tunnel server
```markup
npm run dev -- --tunnel-url
