From 0c87010d6e8e8449ce0a42639cb3931485823106 Mon Sep 17 00:00:00 2001 From: dgfh0450 Date: Tue, 4 Feb 2025 10:10:26 +0900 Subject: [PATCH 1/3] =?UTF-8?q?[UNI-104]=20feat=20:=20document=20title=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD,=20favicon=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uniro_frontend/index.html | 4 ++-- uniro_frontend/public/vite.svg | 1 - uniro_frontend/vite.config.ts | 4 ++++ 3 files changed, 6 insertions(+), 3 deletions(-) delete mode 100644 uniro_frontend/public/vite.svg diff --git a/uniro_frontend/index.html b/uniro_frontend/index.html index 1dc72fe..61ef53b 100644 --- a/uniro_frontend/index.html +++ b/uniro_frontend/index.html @@ -2,10 +2,10 @@ - + - Vite + React + TS + UNIRO
diff --git a/uniro_frontend/public/vite.svg b/uniro_frontend/public/vite.svg deleted file mode 100644 index e7b8dfb..0000000 --- a/uniro_frontend/public/vite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/uniro_frontend/vite.config.ts b/uniro_frontend/vite.config.ts index 0b4fe9d..f695201 100644 --- a/uniro_frontend/vite.config.ts +++ b/uniro_frontend/vite.config.ts @@ -6,4 +6,8 @@ import svgr from "vite-plugin-svgr"; // https://vite.dev/config/ export default defineConfig({ plugins: [react(), tailwindcss(), svgr()], + server: { + port: 3000, + host: "0.0.0.0", + }, }); From cdf65afdc33c678ebabef5b652fbe7472f21c384 Mon Sep 17 00:00:00 2001 From: dgfh0450 Date: Tue, 4 Feb 2025 12:06:32 +0900 Subject: [PATCH 2/3] =?UTF-8?q?[UNI-104]=20feat=20:=20Admin=20=ED=8E=98?= =?UTF-8?q?=EC=9D=B4=EC=A7=80=20document=20title=20=EB=B3=80=EA=B2=BD=20?= =?UTF-8?q?=EB=B0=8F=20favicon=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uniro_admin_frontend/index.html | 4 ++-- uniro_admin_frontend/public/logo.svg | 21 +++++++++++++++++++++ uniro_admin_frontend/public/vite.svg | 1 - 3 files changed, 23 insertions(+), 3 deletions(-) create mode 100644 uniro_admin_frontend/public/logo.svg delete mode 100644 uniro_admin_frontend/public/vite.svg diff --git a/uniro_admin_frontend/index.html b/uniro_admin_frontend/index.html index e4b78ea..7347347 100644 --- a/uniro_admin_frontend/index.html +++ b/uniro_admin_frontend/index.html @@ -2,9 +2,9 @@ - + - Vite + React + TS + UNIRO ADMIN
diff --git a/uniro_admin_frontend/public/logo.svg b/uniro_admin_frontend/public/logo.svg new file mode 100644 index 0000000..8be492d --- /dev/null +++ b/uniro_admin_frontend/public/logo.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/uniro_admin_frontend/public/vite.svg b/uniro_admin_frontend/public/vite.svg deleted file mode 100644 index e7b8dfb..0000000 --- a/uniro_admin_frontend/public/vite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file From 9412a4b6e3ac6c1d834fb861990355498fa68c22 Mon Sep 17 00:00:00 2001 From: YoonDH <114418121+dgfh0450@users.noreply.github.com> Date: Tue, 4 Feb 2025 13:59:15 +0900 Subject: [PATCH 3/3] =?UTF-8?q?[UNI-104]=20fix=20:=20vite.config.ts=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- uniro_frontend/vite.config.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/uniro_frontend/vite.config.ts b/uniro_frontend/vite.config.ts index f695201..0b4fe9d 100644 --- a/uniro_frontend/vite.config.ts +++ b/uniro_frontend/vite.config.ts @@ -6,8 +6,4 @@ import svgr from "vite-plugin-svgr"; // https://vite.dev/config/ export default defineConfig({ plugins: [react(), tailwindcss(), svgr()], - server: { - port: 3000, - host: "0.0.0.0", - }, });