]> git.localhorst.tv Git - alttp.git/blobdiff - routes/web.php
add aos seed retry button
[alttp.git] / routes / web.php
index 450d21f5ab5b2dcc50ca20cfa5c2dc58dc8ba74a..375962dd7a05b47ee449a3f3049fad36df2bafba 100644 (file)
@@ -17,6 +17,10 @@ use Illuminate\Support\Facades\Route;
 
 Route::get('/sitemap.xml', [SitemapXmlController::class, 'index']);
 
+Route::domain(config('aos.hostname'))->group(function() {
+       Route::view('/{path?}', 'aos')->where('path', '.*');
+});
+
 Route::view('/{path?}', 'app')->where('path', '.*');
 
 Route::group(['prefix' => config('larascord.prefix'), 'middleware' => ['web']], function() {