feat: use icon.png as app icon on welcome screen and about dialog

This commit is contained in:
2026-07-06 13:41:55 +08:00
parent ed505d48bf
commit 77fdf03ed7
3 changed files with 17 additions and 23 deletions
+14
View File
@@ -0,0 +1,14 @@
declare module '*.png' {
const src: string
export default src
}
declare module '*.svg' {
const src: string
export default src
}
declare module '*.ico' {
const src: string
export default src
}