File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 />
99 < meta name ="description " content ="Parallel agentic development with Electron + React " />
1010 < meta name ="theme-color " content ="#1e1e1e " />
11- < link rel ="manifest " href ="/ manifest.json " crossorigin ="use-credentials " vite-ignore />
12- < link rel ="icon " href ="/ favicon.ico " data-theme-icon vite-ignore />
13- < link rel ="apple-touch-icon " sizes ="180x180 " href ="/ apple-touch-icon.png " vite-ignore />
11+ < link rel ="manifest " href ="manifest.json " crossorigin ="use-credentials " vite-ignore />
12+ < link rel ="icon " href ="favicon.ico " data-theme-icon vite-ignore />
13+ < link rel ="apple-touch-icon " sizes ="180x180 " href ="apple-touch-icon.png " vite-ignore />
1414 < title > mux - coder multiplexer</ title >
1515 < style >
1616 body {
Original file line number Diff line number Diff line change 22 "name" : " mux - coder multiplexer" ,
33 "short_name" : " mux" ,
44 "description" : " Parallel agentic development with Electron + React" ,
5- "start_url" : " / " ,
5+ "start_url" : " . " ,
66 "display" : " standalone" ,
77 "background_color" : " #1e1e1e" ,
88 "theme_color" : " #1e1e1e" ,
99 "orientation" : " any" ,
1010 "icons" : [
1111 {
12- "src" : " / icon-192.png" ,
12+ "src" : " icon-192.png" ,
1313 "sizes" : " 192x192" ,
1414 "type" : " image/png" ,
1515 "purpose" : " any maskable"
1616 },
1717 {
18- "src" : " / icon-512.png" ,
18+ "src" : " icon-512.png" ,
1919 "sizes" : " 512x512" ,
2020 "type" : " image/png" ,
2121 "purpose" : " any maskable"
2727 "name" : " New Workspace" ,
2828 "short_name" : " New" ,
2929 "description" : " Create a new workspace" ,
30- "url" : " / ?action=new" ,
30+ "url" : " ?action=new" ,
3131 "icons" : []
3232 }
3333 ]
Original file line number Diff line number Diff line change @@ -66,9 +66,10 @@ const THEME_COLORS: Record<ThemeMode, string> = {
6666 "flexoki-dark" : "#100f0f" ,
6767} ;
6868
69+ // Keep hrefs relative so a server-injected <base> preserves path-app prefixes.
6970const FAVICON_BY_SCHEME : Record < "light" | "dark" , string > = {
70- light : "/ favicon.ico" ,
71- dark : "/ favicon-dark.ico" ,
71+ light : "favicon.ico" ,
72+ dark : "favicon-dark.ico" ,
7273} ;
7374
7475/** Map theme mode to CSS color-scheme value */
You can’t perform that action at this time.
0 commit comments