From 3bbb6b4135dbe599e14883b1677b74b8c186a35d Mon Sep 17 00:00:00 2001 From: paul Date: Wed, 23 Jul 2025 13:46:13 +0200 Subject: [PATCH] fix: Add missing frontend public files required for build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix .gitignore excluding frontend/public directory - Add index.html and manifest.json to version control - Remove unnecessary favicon references - These files are essential for React build process 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .gitignore | 2 +- frontend/public/index.html | 26 ++++++++++++++++++++++++++ frontend/public/manifest.json | 9 +++++++++ 3 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 frontend/public/index.html create mode 100644 frontend/public/manifest.json diff --git a/.gitignore b/.gitignore index 3fe045e..11b5578 100644 --- a/.gitignore +++ b/.gitignore @@ -80,7 +80,7 @@ out/ # Gatsby (if used later) .cache/ -public/ +# public/ - commented out as we need frontend/public for React # Mac specific .AppleDouble diff --git a/frontend/public/index.html b/frontend/public/index.html new file mode 100644 index 0000000..9aeaef9 --- /dev/null +++ b/frontend/public/index.html @@ -0,0 +1,26 @@ + + + + + + + + + + + MinIO WebUI + + + +
+ + \ No newline at end of file diff --git a/frontend/public/manifest.json b/frontend/public/manifest.json new file mode 100644 index 0000000..8df811b --- /dev/null +++ b/frontend/public/manifest.json @@ -0,0 +1,9 @@ +{ + "short_name": "MinIO WebUI", + "name": "MinIO WebUI Management Portal", + "icons": [], + "start_url": ".", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +} \ No newline at end of file