mirror of https://github.com/ghostfolio/ghostfolio
9 changed files with 76 additions and 97 deletions
@ -1,9 +1,11 @@ |
|||
import { ConfigurationService } from '@ghostfolio/api/services/configuration/configuration.service'; |
|||
|
|||
import { Module } from '@nestjs/common'; |
|||
|
|||
import { WebManifestController } from './webmanifest.controller'; |
|||
import { ConfigurationService } from '@ghostfolio/api/services/configuration/configuration.service'; |
|||
|
|||
@Module({ |
|||
controllers: [WebManifestController], |
|||
providers: [ConfigurationService], |
|||
providers: [ConfigurationService] |
|||
}) |
|||
export class WebManifestModule {} |
|||
|
@ -1,32 +1,31 @@ |
|||
{ |
|||
"background_color": "#FFFFFF", |
|||
"categories": ["finance", "utilities"], |
|||
"description": "Open Source Wealth Management Software", |
|||
"display": "standalone", |
|||
"icons": [ |
|||
{ |
|||
"sizes": "192x192", |
|||
"src": "/assets/android-chrome-192x192.png", |
|||
"type": "image/png" |
|||
}, |
|||
{ |
|||
"purpose": "any", |
|||
"sizes": "512x512", |
|||
"src": "/assets/android-chrome-512x512.png", |
|||
"type": "image/png" |
|||
}, |
|||
{ |
|||
"purpose": "maskable", |
|||
"sizes": "512x512", |
|||
"src": "/assets/android-chrome-512x512.png", |
|||
"type": "image/png" |
|||
} |
|||
], |
|||
"name": "Ghostfolio", |
|||
"orientation": "portrait", |
|||
"short_name": "Ghostfolio", |
|||
"start_url": "/${languageCode}/", |
|||
"theme_color": "#FFFFFF", |
|||
"url": "${rootUrl}" |
|||
} |
|||
|
|||
"background_color": "#FFFFFF", |
|||
"categories": ["finance", "utilities"], |
|||
"description": "Open Source Wealth Management Software", |
|||
"display": "standalone", |
|||
"icons": [ |
|||
{ |
|||
"sizes": "192x192", |
|||
"src": "/assets/android-chrome-192x192.png", |
|||
"type": "image/png" |
|||
}, |
|||
{ |
|||
"purpose": "any", |
|||
"sizes": "512x512", |
|||
"src": "/assets/android-chrome-512x512.png", |
|||
"type": "image/png" |
|||
}, |
|||
{ |
|||
"purpose": "maskable", |
|||
"sizes": "512x512", |
|||
"src": "/assets/android-chrome-512x512.png", |
|||
"type": "image/png" |
|||
} |
|||
], |
|||
"name": "Ghostfolio", |
|||
"orientation": "portrait", |
|||
"short_name": "Ghostfolio", |
|||
"start_url": "/${languageCode}/", |
|||
"theme_color": "#FFFFFF", |
|||
"url": "${rootUrl}" |
|||
} |
|||
|
@ -1,31 +0,0 @@ |
|||
{ |
|||
"background_color": "#FFFFFF", |
|||
"categories": ["finance", "utilities"], |
|||
"description": "Open Source Wealth Management Software", |
|||
"display": "standalone", |
|||
"icons": [ |
|||
{ |
|||
"sizes": "192x192", |
|||
"src": "/assets/android-chrome-192x192.png", |
|||
"type": "image/png" |
|||
}, |
|||
{ |
|||
"purpose": "any", |
|||
"sizes": "512x512", |
|||
"src": "/assets/android-chrome-512x512.png", |
|||
"type": "image/png" |
|||
}, |
|||
{ |
|||
"purpose": "maskable", |
|||
"sizes": "512x512", |
|||
"src": "/assets/android-chrome-512x512.png", |
|||
"type": "image/png" |
|||
} |
|||
], |
|||
"name": "Ghostfolio", |
|||
"orientation": "portrait", |
|||
"short_name": "Ghostfolio", |
|||
"start_url": "/en/", |
|||
"theme_color": "#FFFFFF", |
|||
"url": "https://ghostfol.io" |
|||
} |
Loading…
Reference in new issue