12 lines
264 B
PHP
12 lines
264 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::get('/{any}', function () {
|
|
if (config('app.frontend.dev')) {
|
|
return redirect(config('app.frontend.dev_url'));
|
|
}
|
|
|
|
return file_get_contents(public_path('index.html'));
|
|
})->where('any', '.*');
|