From f08fd130be08761ac6bd801f42d7eca0e6430bcd Mon Sep 17 00:00:00 2001 From: hskwon Date: Fri, 8 Aug 2025 17:13:31 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20Swagger=20skin=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/api-docs/index.html | 52 ++++++++++++++++++++++++++++++++++++++ routes/web.php | 2 +- 2 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 public/api-docs/index.html diff --git a/public/api-docs/index.html b/public/api-docs/index.html new file mode 100644 index 0000000..2fcd4e4 --- /dev/null +++ b/public/api-docs/index.html @@ -0,0 +1,52 @@ + + + + + + + + + + + + diff --git a/routes/web.php b/routes/web.php index fbe9f6c..0599d19 100644 --- a/routes/web.php +++ b/routes/web.php @@ -3,7 +3,7 @@ use Illuminate\Support\Facades\Route; Route::get('/', function () { - return redirect('/api/documentation/v1'); + return redirect('/api-docs/index.html'); });