Skip to content

Commit

Permalink
fix(gatsby-plugin-netlify-cms): Report URL with expected protocol and…
Browse files Browse the repository at this point in the history
… port (#27583)
  • Loading branch information
tmttn authored Oct 22, 2020
1 parent 45f375e commit 1e5140f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/gatsby-plugin-netlify-cms/src/gatsby-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -217,9 +217,9 @@ exports.onCreateWebpackConfig = (
clearConsole: false,
compilationSuccessInfo: {
messages: [
`Netlify CMS is running at ${program.ssl ? `https` : `http`}://${
program.host
}:${program.port}/${publicPathClean}/`,
`Netlify CMS is running at ${
program.https ? `https://` : `http://`
}${program.host}:${program.proxyPort}/${publicPathClean}/`,
],
},
}),
Expand Down

0 comments on commit 1e5140f

Please sign in to comment.