Skip to content

Commit 60f1866

Browse files
committed
feat: edit UI changes
1 parent 5b94c63 commit 60f1866

File tree

11 files changed

+530
-23
lines changed

11 files changed

+530
-23
lines changed

backend/internal/api/routes.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func SetupRoutes(isoService *service.ISOService, isoDir string, wsHub *ws.Hub, c
5959
router.Static("/static", frontendPath+"/static")
6060

6161
// Serve favicon
62-
router.StaticFile("/favicon.png", frontendPath+"/favicon.png")
62+
router.StaticFile("/favicon.svg", frontendPath+"/favicon.svg")
6363

6464
// Serve index.html for root and all other routes (for React Router)
6565
router.NoRoute(func(c *gin.Context) {

ui/public/favicon.png

-6.14 KB
Binary file not shown.

ui/public/favicon.svg

Lines changed: 74 additions & 0 deletions
Loading

ui/rsbuild.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ import { pluginReact } from '@rsbuild/plugin-react';
55
// Docs: https://rsbuild.rs/config/
66
export default defineConfig({
77
plugins: [pluginReact()],
8+
html: {
9+
title: 'ISOMan - Linux ISO Manager',
10+
favicon: './public/favicon.svg',
11+
},
812
resolve: {
913
alias: {
1014
'@': path.resolve(__dirname, './src'),

0 commit comments

Comments
 (0)