add a test route to trigger re deploy

This commit is contained in:
edmondlang
2025-02-01 00:49:35 +07:00
parent 63e59ae2b2
commit 7a2a49295d
+4
View File
@@ -1339,3 +1339,7 @@ Route::get('/site.webmanifest', function () {
$contents = File::get($filePath);
return response($contents, 200)->header('Content-Type', 'application/manifest+json');
});
Route::get('/test-test', function () {
dd('test-test');
});