From 3426fe07c091220835b308b4d242878c74aa6535 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=82=A8=EC=A0=95=EC=9A=B1?= <113816822+HelloWook@users.noreply.github.com> Date: Mon, 9 Dec 2024 02:29:24 +0900 Subject: [PATCH] =?UTF-8?q?chore=20:=20pwa=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 1 + public/icon-192x192.svg | 12 ++++++++++++ public/icon-512x512.svg | 12 ++++++++++++ public/manifest.json | 21 +++++++++++++++++++++ 4 files changed, 46 insertions(+) create mode 100644 public/icon-192x192.svg create mode 100644 public/icon-512x512.svg create mode 100644 public/manifest.json diff --git a/index.html b/index.html index e0ef3be8..54e9ce7d 100644 --- a/index.html +++ b/index.html @@ -5,6 +5,7 @@ Vite + React + TS +
diff --git a/public/icon-192x192.svg b/public/icon-192x192.svg new file mode 100644 index 00000000..e4b60fa9 --- /dev/null +++ b/public/icon-192x192.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/icon-512x512.svg b/public/icon-512x512.svg new file mode 100644 index 00000000..be859f42 --- /dev/null +++ b/public/icon-512x512.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/public/manifest.json b/public/manifest.json new file mode 100644 index 00000000..50aecbe5 --- /dev/null +++ b/public/manifest.json @@ -0,0 +1,21 @@ +{ + "name": "Vite React App", + "short_name": "ViteApp", + "description": "Bottler", + "start_url": "/", + "display": "standalone", + "background_color": "#ffffff", + "theme_color": "#000000", + "icons": [ + { + "src": "/icon-192x192.svg", + "sizes": "192x192", + "type": "image/svg+xml" + }, + { + "src": "/icon-512x512.svg", + "sizes": "512x512", + "type": "image/svg+xml" + } + ] +}