Change App Name and Icon
The best first customization is something you can see right away.
This page explains how to change the icon and the app name, and where those values live in the current starter-driven structure.
1. Change the icon
The default icon file is:
text
public/
icon.icoThe icon is wired through the root frontron.config.ts:
ts
app: {
icon: './public/icon.ico',
}If app.icon is omitted, Frontron falls back to its default icon.
2. Change the app name and app ID
The main app metadata lives in the root frontron.config.ts.
The first two values most people change are:
app.nameapp.id
3. Change visible UI text
If you want to change text shown directly in the starter UI, check:
src/components/TitleBar.tsxsrc/App.tsx
The window definition itself lives in frontron/windows/index.ts.
4. Good first change order
- Replace
public/icon.ico - Update
app.namein the rootfrontron.config.ts - Update
app.idin the rootfrontron.config.ts - Change visible UI text in
src/components/TitleBar.tsx