#環境
- laravel 7.27.0
#Reactへの切り替え
まずはlaravel/uiをインストール
composer require laravel/ui:0.*
laravel7からはphp artisan preset react
と入力すると
Command "preset" is not defined.
と表示される
laravel7からはpreset
コマンドが使えなくなったため。
参考:【解決済み】 Command “preset” is not defined.のエラーを解消する方法
その後npmコマンドを実行
npm install
その後以下コマンドを実行
php artisan ui react
--auth
オプションを付けるとログイン認証機能もインストールされる
resources/js/components/Example.js
になっていることを確認
#参考