Skip to content

Commit 1374564

Browse files
authored
Give a more clear name under Mobile to the PWA app (#739)
1 parent c416ebd commit 1374564

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"name": "betaflight-blackbox-explorer",
3+
"productName": "Blackbox Explorer",
34
"displayName": "Betaflight - Blackbox Explorer",
45
"description": "Crossplatform blackbox analitics tool for Betaflight flight control system.",
56
"version": "4.0.0",

vite.config.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ export default {
1616
},
1717
includeAssets: ['favicon.ico', 'robots.txt', 'apple-touch-icon.png'],
1818
manifest: {
19-
name: pkg.name,
20-
short_name: 'BBE',
19+
name: pkg.displayName,
20+
short_name: pkg.productName,
2121
description: pkg.description,
2222
theme_color: '#ffffff',
2323
icons: [
@@ -37,7 +37,7 @@ export default {
3737
type: 'image/png',
3838
},
3939
],
40-
}
41-
})
40+
},
41+
}),
4242
],
4343
}

0 commit comments

Comments
 (0)