create-next-app から Tyescript を設定する
with-typescript
テンプレートを使用して、create-next-app
から作成する。
npx create-next-app next-ts-sample-app --example with-typescript
その後は yarn dev
コマンドで、http://localhost:3000
にアクセスでき、Typescript で Next.js を開発できるようになる。
npx create-next-app --example with-typescript
cd next-ts-sample-app
yarn dev