2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

GithubからPullしたNuxt.jsのアプリケーションが起動しない時の対処法

Last updated at Posted at 2020-07-28

#はじめに
Nuxt.jsのアプリケーションをGithubからPullして、
起動を試みたのですが失敗しました。
本記事ではこのエラー解決法をまとめます。

#npm run dev(または、yarn dev)で失敗する

npm install
npm run dev

または、

yarn install
yarn dev

エラーが出て起動に失敗しました。
エラーログを見た結果、「nuxt」というコマンドがないためにエラーが出ていそうだなと判断しました。

#解決策

npm install --save nuxt
npm run dev

または、

yarn add nuxt
yarn dev

#typescriptを使用している場合

npm install --save nuxt-ts
npm run dev

または、

yarn add nuxt-ts
yarn dev
2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?