mirror of https://github.com/ghostfolio/ghostfolio
committed by
Thomas Kaul
4 changed files with 67 additions and 47 deletions
@ -0,0 +1,9 @@ |
|||||
|
import { Module } from '@nestjs/common'; |
||||
|
import { WebManifestController } from './webmanifest.controller'; |
||||
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration/configuration.service'; |
||||
|
|
||||
|
@Module({ |
||||
|
controllers: [WebManifestController], |
||||
|
providers: [ConfigurationService], |
||||
|
}) |
||||
|
export class WebManifestModule {} |
@ -0,0 +1,32 @@ |
|||||
|
{ |
||||
|
"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}" |
||||
|
} |
||||
|
|
Loading…
Reference in new issue