Я хочу иметь возможность строить с помощью nuxt

#npm #nuxt.js #npx

#npm #nuxt.js #npx

Вопрос:

Произошла ошибка при выполнении npm run dev в проекте после его создания с помощью create-nuxt-app. Я искал ошибку, но не смог найти ничего, что соответствовало бы содержимому ошибки.

 FATAL  URL is not defined                                                                              15:16:01

  at parseURL (node_modules/@nuxt/ufo/dist/index.js:22:15)
  at Object.normalizeURL (node_modules/@nuxt/ufo/dist/index.js:33:44)
  at Object.getNuxtConfig (node_modules/@nuxt/config/dist/config.js:4141:29)
  at new Nuxt (node_modules/@nuxt/core/dist/core.js:643:27)
  at NuxtCommand.getNuxt (node_modules/@nuxt/cli/dist/cli-index.js:2868:18)
  at <anonymous>
  at process._tickCallback (internal/process/next_tick.js:160:7)
  at Function.Module.runMain (module.js:703:11)
  at startup (bootstrap_node.js:193:16)
  at bootstrap_node.js:617:3


   ╭────────────────────────────────────────╮
   │                                        │
   │   ✖ Nuxt Fatal Error                   │
   │                                        │
   │   ReferenceError: URL is not defined   │
   │                                        │
   ╰────────────────────────────────────────╯

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! eshiritori-frontend@1.0.0 dev: `nuxt`
npm ERR! Exit status 1
npm ERR! 
npm ERR! Failed at the eshiritori-frontend@1.0.0 dev script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/aaa/.npm/_logs/2020-12-08T06_16_01_831Z-debug.log
 

Ответ №1:

Я решил свою проблему, удалив «^» из версии nuxt в package.json

перед: «nuxt»: «^ 2.11.0»

теперь: «nuxt»: «2.11.0»,