Skip to content
This repository has been archived by the owner on Jul 19, 2021. It is now read-only.

Commit

Permalink
Merge pull request #820 from Shopify/fix-browsersync-panel
Browse files Browse the repository at this point in the history
Fix browser sync ui-external
  • Loading branch information
t-kelly authored Oct 16, 2018
2 parents 6dd130b + 5832cf9 commit e375c1c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion packages/slate-tools/cli/commands/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,6 @@ async function onClientAfterSync() {

console.log();
console.log(` The Browsersync control panel is available at:\n`);
console.log(` ${chalk.cyan(urls.get('ui'))} ${chalk.grey('(Local)')}`);

if (devServer.domain !== 'localhost') {
console.log(
Expand Down
2 changes: 1 addition & 1 deletion packages/slate-tools/tools/dev-server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class DevServer {
https: {key: getSSLKeyPath(), cert: getSSLCertPath()},
logLevel: 'silent',
socket: {
domain: `${this.domain}:${this.port}`,
domain: `https://${this.domain}:${this.port}`,
},
ui: {
port: this.uiPort,
Expand Down

0 comments on commit e375c1c

Please sign in to comment.