fix: Add missing frontend public files required for build
Test and Build / backend-test (push) Has been cancelled
Deploy / build-and-push (push) Has been cancelled
Test and Build / frontend-test (push) Has been cancelled
Deploy / deploy-staging (push) Has been cancelled
Deploy / deploy-production (push) Has been cancelled
Test and Build / docker-build (push) Has been cancelled
Test and Build / test-summary (push) Has been cancelled

- 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 <noreply@anthropic.com>
This commit is contained in:
2025-07-23 13:46:13 +02:00
parent ded07c23b6
commit 3bbb6b4135
3 changed files with 36 additions and 1 deletions
+1 -1
View File
@@ -80,7 +80,7 @@ out/
# Gatsby (if used later)
.cache/
public/
# public/ - commented out as we need frontend/public for React
# Mac specific
.AppleDouble
+26
View File
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="MinIO WebUI - Simple management interface for MinIO"
/>
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<title>MinIO WebUI</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>
+9
View File
@@ -0,0 +1,9 @@
{
"short_name": "MinIO WebUI",
"name": "MinIO WebUI Management Portal",
"icons": [],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}