Ask A Question

Notifications

You’re not receiving notifications from this thread.

How to get ngrok working with webpack-dev-server

Daniel Weaver asked in Rails

I run my local dev site on ngrok and the webpack-dev-server spits out errors to the console on a regular basis:

GET https://localhost:3035/sockjs-node/info?t=1566173800826 net::ERR_CERT_AUTHORITY_INVALID @ sockjs.js:1795

[WDS] Disconnected!

Any ideas what I need to change to stop these errors appearing? Nothing I've tried so far has worked. Or do I need to make choice between using webpacker and ngrok?

Reply

Probably because you're using SSL to access your site over ngrok and your dev server is not. Try using http with ngrok.

Reply

Change webpacker.yml config

dev_server:
https: true

Reply
Join the discussion
Create an account Log in

Want to stay up-to-date with Ruby on Rails?

Join 81,842+ developers who get early access to new tutorials, screencasts, articles, and more.

    We care about the protection of your data. Read our Privacy Policy.

    Screencast tutorials to help you learn Ruby on Rails, Javascript, Hotwire, Turbo, Stimulus.js, PostgreSQL, MySQL, Ubuntu, and more.

    © 2024 GoRails, LLC. All rights reserved.