Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update Nuxt logo #2014

Merged
merged 2 commits into from
Jan 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/docs/src/guide/open-in-editor.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ To able to work, this feature may need some configuration in your project.

Vue CLI 3 supports this feature out-of-the-box when running `vue-cli-service serve`.

## Nuxt.js & Quasar CLI
## Nuxt & Quasar CLI

Nuxt & Quasar CLI supports this feature out-of-the-box. Make sure to be in debug mode.

Expand Down
Binary file modified packages/shell-chrome/icons/128.nuxt.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified packages/shell-chrome/icons/16.nuxt.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified packages/shell-chrome/icons/48.nuxt.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion packages/shell-chrome/popups/disabled.nuxt.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<link rel="stylesheet" type="text/css" href="./popup.css">

<p>
<strong>Nuxt.js + Vue.js is detected on this page.</strong><br/>
<strong>Nuxt + Vue.js is detected on this page.</strong><br/>
Devtools inspection is not available because it's in
production mode or explicitly disabled by the author.
</p>
2 changes: 1 addition & 1 deletion packages/shell-chrome/popups/enabled.nuxt.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<div>
<p>
<strong>Nuxt.js + Vue.js is detected on this page.</strong><br/>
<strong>Nuxt + Vue.js is detected on this page.</strong><br/>
Open DevTools and look for the Vue panel.
</p>

Expand Down
2 changes: 1 addition & 1 deletion packages/shell-chrome/src/detector.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function detect (win) {
let detectRemainingTries = 10

function runDetect () {
// Method 1: Check Nuxt.js
// Method 1: Check Nuxt
const nuxtDetected = !!(window.__NUXT__ || window.$nuxt)

if (nuxtDetected) {
Expand Down