Skip to content

Commit

Permalink
new message for default dev
Browse files Browse the repository at this point in the history
  • Loading branch information
mm-vasyl committed Nov 6, 2023
1 parent b193f36 commit b89dd6b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/webpack/devServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,13 @@ module.exports = async function devServer(configs, openLocation = true) {
open(`${httpLocation}?gsdevtools=true`);
}

console.log(`${chalk.blue('i')} Server running. Please go to ${httpLocation}
console.log(`
${chalk.blue('i')} ${openLocation
? `Server ${httpLocation} is running and will open automatically. It might take a while to load.`
: `Server ${httpLocation} is running. It might take a while to load.`
}
${chalk.grey.bold('-------------------------------------------------------')}
`);
`);

const app = express();

Expand Down

0 comments on commit b89dd6b

Please sign in to comment.