yarn create next-app コマンドを実行
yarn add next react react-dom コマンドを実行
touch tsconfig.json コマンドを実行
yarn add --dev typescript @types/react @types/node コマンドを実行
上記の4つのコマンドを実行しnext.jsの環境を構築しました。
この環境にreact + typescriptで作っていたspaアプリのファイルを移行しようと思います。
next.jsのディレクトリを見てみると以下のようになっていました。
react + typescriptのspaアプリを移行したいのですがnext.jsに移行した時、ディレクトリはどういう構成にしたらいいのでしょうか
#react #typescript #programming