Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Commit

Permalink
remove extra dot
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Oct 27, 2022
1 parent 4c796a0 commit 67a64fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/nuxi/src/commands/dev.ts
Expand Up @@ -148,10 +148,10 @@ export default defineNuxtCommand({
if (file.startsWith(pagesDir)) {
const hasPages = existsSync(pagesDir) ? readdirSync(pagesDir).length > 0 : false
if (currentNuxt && !currentNuxt.options.pages && hasPages) {
return dLoad(true, 'Pages enabled.')
return dLoad(true, 'Pages enabled')
}
if (currentNuxt && currentNuxt.options.pages && !hasPages) {
return dLoad(true, 'Pages disabled.')
return dLoad(true, 'Pages disabled')
}
}
})
Expand Down

0 comments on commit 67a64fe

Please sign in to comment.