From fd3e3280a2590be9ca074a172c535990a5035649 Mon Sep 17 00:00:00 2001 From: Mitchell Riedstra Date: Mon, 26 Dec 2022 00:11:58 -0500 Subject: Add a proxy option for static assets. Fix the paste view handlers. --- paste-ui/public/favicon.ico | Bin 0 -> 3870 bytes paste-ui/public/index.html | 43 ++++++++++++++++++++++++++++++++++++++++++ paste-ui/public/logo192.png | Bin 0 -> 5347 bytes paste-ui/public/logo512.png | Bin 0 -> 9664 bytes paste-ui/public/manifest.json | 25 ++++++++++++++++++++++++ paste-ui/public/robots.txt | 3 +++ 6 files changed, 71 insertions(+) create mode 100644 paste-ui/public/favicon.ico create mode 100644 paste-ui/public/index.html create mode 100644 paste-ui/public/logo192.png create mode 100644 paste-ui/public/logo512.png create mode 100644 paste-ui/public/manifest.json create mode 100644 paste-ui/public/robots.txt (limited to 'paste-ui/public') diff --git a/paste-ui/public/favicon.ico b/paste-ui/public/favicon.ico new file mode 100644 index 0000000..a11777c Binary files /dev/null and b/paste-ui/public/favicon.ico differ diff --git a/paste-ui/public/index.html b/paste-ui/public/index.html new file mode 100644 index 0000000..aa069f2 --- /dev/null +++ b/paste-ui/public/index.html @@ -0,0 +1,43 @@ + + + + + + + + + + + + + React App + + + +
+ + + diff --git a/paste-ui/public/logo192.png b/paste-ui/public/logo192.png new file mode 100644 index 0000000..fc44b0a Binary files /dev/null and b/paste-ui/public/logo192.png differ diff --git a/paste-ui/public/logo512.png b/paste-ui/public/logo512.png new file mode 100644 index 0000000..a4e47a6 Binary files /dev/null and b/paste-ui/public/logo512.png differ diff --git a/paste-ui/public/manifest.json b/paste-ui/public/manifest.json new file mode 100644 index 0000000..080d6c7 --- /dev/null +++ b/paste-ui/public/manifest.json @@ -0,0 +1,25 @@ +{ + "short_name": "React App", + "name": "Create React App Sample", + "icons": [ + { + "src": "favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + }, + { + "src": "logo192.png", + "type": "image/png", + "sizes": "192x192" + }, + { + "src": "logo512.png", + "type": "image/png", + "sizes": "512x512" + } + ], + "start_url": ".", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +} diff --git a/paste-ui/public/robots.txt b/paste-ui/public/robots.txt new file mode 100644 index 0000000..e9e57dc --- /dev/null +++ b/paste-ui/public/robots.txt @@ -0,0 +1,3 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Disallow: -- cgit v1.2.3