3

When using Chrome with a POW .dev domain, page loads are incredibly slow.

There is a long delay between Rails finishing its work and the page being rendered to the screen.

Running the same app on a .dev domain in Safari or Firefox results in instant page load. As does running an alternate server locally on localhost.

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
Undistraction
  • 42,754
  • 56
  • 195
  • 331

2 Answers2

13

The specifics of getting it to work on OSX are as follows:

  1. Open System Preferences
  2. Open Network
  3. Open Advanced
  4. Click Proxies tab
  5. in the field labelled Bypass proxy settings for Hosts & Domains, add *.dev
  6. Click OK
  7. Click Apply
Undistraction
  • 42,754
  • 56
  • 195
  • 331
3

I had a similar problem but with a different solution. Under systems preferences -> Network -> Advanced -> DNS I added localhost 127.0.0.1 as a nameserver before any other nameservers. This helps to resolve the .dev domains much faster.

nulltek
  • 3,247
  • 9
  • 44
  • 94