We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e968cd commit a5b19efCopy full SHA for a5b19ef
1 file changed
packages/devtools/src/module-main.ts
@@ -178,5 +178,15 @@ window.__NUXT_DEVTOOLS_TIME_METRIC__.appInit = Date.now()
178
179
const isMac = os.platform() === 'darwin'
180
181
- logger.success(`Nuxt DevTools ${colors.dim(`v${version}`)}${isGlobalInstall() ? colors.dim(' [global]') : ''} enabled, press \`Shift\` + \`${isMac ? 'Option' : 'Alt'}\` + \`D\` in app to open.`)
+ logger.log([
182
+ colors.yellow(` ➜ DevTools: `),
183
+ colors.dim('press '),
184
+ colors.green('Shift'),
185
+ colors.dim(' + '),
186
+ colors.green(isMac ? 'Option' : 'Alt'),
187
188
+ colors.green('D'),
189
+ colors.dim(` in the browser (v${version})`),
190
+ '\n',
191
+ ].join(''))
192
}
0 commit comments