Skip to content

Commit

Permalink
fix: don't open browser for plugins on start [LIBS-503] (#821)
Browse files Browse the repository at this point in the history
  • Loading branch information
KaiVandivier committed Dec 11, 2023
1 parent fca6e9a commit 7db7a69
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion cli/src/commands/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const handler = async ({
if (config.entryPoints.plugin) {
const pluginPort = await detectPort(newPort + 1)
reporter.print(
`The plugin is now available on port ${pluginPort}`
`The plugin is now available on port ${pluginPort} at /${paths.pluginLaunchPath}`
)
reporter.print('')

Expand Down
2 changes: 0 additions & 2 deletions cli/src/lib/plugin/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ module.exports = async ({ port, config, paths }) => {
{
port,
host,
// open browser
open: [`/${paths.pluginLaunchPath}`],
client: {
logging: 'none',
overlay: {
Expand Down

0 comments on commit 7db7a69

Please sign in to comment.