0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Nextjsの簡単な使い方について

Last updated at Posted at 2025-03-02

備忘録の一環として記事を書いてみました
これでNodejsのインストールも必要ですが、とりあえず
簡単な立ち上げについて書いてみます。
プロジェクト名はお好みでどうぞ

#インストール

npx create-next-app プロジェクト名

次に詳細設定を行います

PS C:\Users\user\test> npx create-next-app プロジェクト名
 Would you like to use TypeScript? ... No/Yes
 Would you like to use ESLint? ... No/Yes
 Would you like to use Tailwind CSS? ... No/Yes
 Would you like to use `src/` directory? ... No/Yes
 Would you like to use App Router? (recommended) ... No/Yes
 Would you like to customize the default import alias (@/*)? ... No/Yes

最後にcdでプロジェクトそのものに移動して
下記のコードで起動確認を行います

cd プロジェクト名
npm run dev
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?