Skip to content

Commit

Permalink
fix: replace white with reset (#10104)
Browse files Browse the repository at this point in the history
  • Loading branch information
btea committed Sep 13, 2022
1 parent caf00c8 commit 5d56e42
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/vite/src/node/cli.ts
Expand Up @@ -103,7 +103,7 @@ cli
const viteStartTime = global.__vite_start_time ?? false
const startupDurationString = viteStartTime
? colors.dim(
`ready in ${colors.white(
`ready in ${colors.reset(
colors.bold(Math.ceil(performance.now() - viteStartTime))
)} ms`
)
Expand Down
2 changes: 1 addition & 1 deletion packages/vite/src/node/logger.ts
Expand Up @@ -153,7 +153,7 @@ export function printServerUrls(
info(` ${colors.green('➜')} ${colors.bold('Network')}: ${colorUrl(url)}`)
}
if (urls.network.length === 0 && optionsHost === undefined) {
const note = `use ${colors.white(colors.bold('--host'))} to expose`
const note = `use ${colors.reset(colors.bold('--host'))} to expose`
info(
colors.dim(` ${colors.green('➜')} ${colors.bold('Network')}: ${note}`)
)
Expand Down

0 comments on commit 5d56e42

Please sign in to comment.