docbrown/app/assets/javascripts/manifest.json.erb
Ben Halpern b0ad7f8c74
Some night theme code, other style adjustments, and extracted app name into ENV var (#2289)
* Style, theme adjustments, plus generalization work

* Modify login cta style on home page

* Modify text
2019-04-02 13:10:28 -04:00

23 lines
669 B
Text

{
"name": "<%= ApplicationConfig["COMMUNITY_NAME"] %> Community",
"short_name": "dev.to",
"description": "Where programmers share ideas, experiences, and help each other grow.",
"start_url": "/",
"display": "standalone",
"background_color": "#000000",
"theme_color": "#000000",
"homepage_url": "https://dev.to",
"icons": [{
"src": "<%= image_path "devlogo-pwa-192.png" %>",
"sizes": "192x192",
"type": "image/png"
}, {
"src": "<%= image_path "devlogo-pwa-128.png" %>",
"sizes": "128x128",
"type": "image/png"
}, {
"src": "<%= image_path "devlogo-pwa-512.png" %>",
"sizes": "512x512",
"type": "image/png"
}]
}