這個問題我也遇到了
這個和配置路由 沒有 關係 具體問題是 rand 這個函數 的問題
ErrorException in StorageManager.php line 217:
rand() expects parameter 2 to be integer, float given
這個函數 在 window 系統下的 最大值 不能 超過 32768 個範圍
修改方法
需要修改vendor/overtrue/laravel-ueditor/src/StorageManager.php中217行
$randNum = rand(1, 10000000000).rand(1, 10000000000);
修改為
$randNum = rand(1, 10000).rand(1, 10000);
就好了