1
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 1 year has passed since last update.

Next.js v12+TypeScriptでプロジェクトの雛形を生成する

Last updated at Posted at 2021-11-19

この投稿ではNext.js v12 + TypeScriptのプロジェクトの雛形を生成するまでの流れを簡潔に説明します。

要件

  • Node.js 12.22.0以上の環境が必要

プロジェクトの雛形を生成する

npmコマンドまたはyarnコマンドでプロジェクトの雛形を生成します。

npx create-next-app@latest
# または
yarn create next-app --typescript

プロジェクト名を聞かれるので、適当に名前をつけます。

このコマンドを実行すると必要なパッケージのインストールも行われます。

開発サーバーを起動する

雛形が生成されたら開発サーバーを起動します。開発サーバーの起動はyarn devコマンドです。

cd my-app
yarn dev

最後にhttp://localhost:3000にアクセスし、次の図のようなWelcomeページが表示されていれば、雛形の生成は完了です。

20211119_201232.png

1
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
1
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?