add a test route to trigger re deploy

This commit is contained in:
edmondlang
2025-02-01 01:08:16 +07:00
parent d8985d9453
commit 941a4e78e1
+5
View File
@@ -1339,3 +1339,8 @@ 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');
});