I want to change default browsersync host from localhost:3000 to myapp.dev:8000.
I created a bs-config.js:
module.exports = {
"port": 8000,
"server": { "baseDir": "./" },
};
Port is changed to 8000, but I don't know how can I change the host. Can you help me?