-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
favicon-config.js
37 lines (37 loc) · 2.17 KB
/
favicon-config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
export default {
email: '[email protected]',
dest: './src/favicons/',
faviconConfig: {
path: '/favicons/', // Path for overriding default icons path. `string`
appName: 'HifiWi.fi', // Your application's name. `string`
appDescription: 'HifiWi.fi internet products', // Your application's description. `string`
developerName: 'HifiWi.fi LLC', // Your (or your developer's) name. `string`
developerURL: 'https://hifiwi.fi', // Your (or your developer's) URL. `string`
dir: 'auto', // Primary text direction for name, short_name, and description
lang: 'en-US', // Primary language for name and short_name
background: '#232830', // Background colour for flattened icons. `string`
theme_color: '#232830', // Theme color user for example in Android's task switcher. `string`
display: 'standalone', // Preferred display mode: "fullscreen", "standalone", "minimal-ui" or "browser". `string`
orientation: 'any', // Default orientation: "any", "natural", "portrait" or "landscape". `string`
start_url: '/?homescreen=1', // Start URL when launching the application from a device. `string`
version: '1.0', // Your application's version string. `string`
logging: true, // Print logs to console? `boolean`
icons: {
// Platform Options:
// - offset - offset in percentage
// - background:
// * false - use default
// * true - force use default, e.g. set background for Android icons
// * color - set background for the specified icons
//
android: false, // Create Android homescreen icon. `boolean` or `{ offset, background }`
appleIcon: true, // Create Apple touch icons. `boolean` or `{ offset, background }`
appleStartup: false, // Create Apple startup images. `boolean` or `{ offset, background }`
coast: false, // Create Opera Coast icon. `boolean` or `{ offset, background }`
favicons: true, // Create regular favicons. `boolean`
firefox: false, // Create Firefox OS icons. `boolean` or `{ offset, background }`
windows: false, // Create Windows 8 tile icons. `boolean` or `{ background }`
yandex: false // Create Yandex browser icon. `boolean` or `{ background }`
}
}
}