``` javascript browserSync: { dev: { bsFiles: { src : [ '**/*.css', '**/*.php', '**/*.js', '**/*.{png,jpg,jpeg,gif,webp,svg}' ] }, options: { proxy: "wp.dev", watchTask: true, debugInfo: true, browser: "google chrome", logConnections: true } } } ``` My original machine is wp.dev. It runs beautifully served up on http://localhost:3000/, and the other computer shows the site on 192.168.0.3:3000. My issue is that the image on the external machine are showing up as ``` html <img src="http://wp.dev/path/to/image.jpg"> ``` which is causing them all to be broken rather than ``` html <img src="http://192.168.0.3:3000/path/to/image.jpg"> ``` which shows them correctly. Did I setup the config wrong?