📝
カレントディレクトリ配下に Next.js のプロジェクトを作成する方法
通常のやり方
npx create-next-app@latest --typescript
こうするとアプリ名を聞かれる
カレントディレクトリ配下に作成するやり方
npx create-next-app@latest --typescript .
こうするとアプリ名を聞かれない
npx create-next-app@latest --typescript
こうするとアプリ名を聞かれる
npx create-next-app@latest --typescript .
こうするとアプリ名を聞かれない
Discussion