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 { Module } from '@nestjs/common'; |
||||
|
|
||||
import { WebManifestController } from './webmanifest.controller'; |
import { WebManifestController } from './webmanifest.controller'; |
||||
import { ConfigurationService } from '@ghostfolio/api/services/configuration/configuration.service'; |
|
||||
|
|
||||
@Module({ |
@Module({ |
||||
controllers: [WebManifestController], |
controllers: [WebManifestController], |
||||
providers: [ConfigurationService], |
providers: [ConfigurationService] |
||||
}) |
}) |
||||
export class WebManifestModule {} |
export class WebManifestModule {} |
||||
|
@ -1,32 +1,31 @@ |
|||||
{ |
{ |
||||
"background_color": "#FFFFFF", |
"background_color": "#FFFFFF", |
||||
"categories": ["finance", "utilities"], |
"categories": ["finance", "utilities"], |
||||
"description": "Open Source Wealth Management Software", |
"description": "Open Source Wealth Management Software", |
||||
"display": "standalone", |
"display": "standalone", |
||||
"icons": [ |
"icons": [ |
||||
{ |
{ |
||||
"sizes": "192x192", |
"sizes": "192x192", |
||||
"src": "/assets/android-chrome-192x192.png", |
"src": "/assets/android-chrome-192x192.png", |
||||
"type": "image/png" |
"type": "image/png" |
||||
}, |
}, |
||||
{ |
{ |
||||
"purpose": "any", |
"purpose": "any", |
||||
"sizes": "512x512", |
"sizes": "512x512", |
||||
"src": "/assets/android-chrome-512x512.png", |
"src": "/assets/android-chrome-512x512.png", |
||||
"type": "image/png" |
"type": "image/png" |
||||
}, |
}, |
||||
{ |
{ |
||||
"purpose": "maskable", |
"purpose": "maskable", |
||||
"sizes": "512x512", |
"sizes": "512x512", |
||||
"src": "/assets/android-chrome-512x512.png", |
"src": "/assets/android-chrome-512x512.png", |
||||
"type": "image/png" |
"type": "image/png" |
||||
} |
} |
||||
], |
], |
||||
"name": "Ghostfolio", |
"name": "Ghostfolio", |
||||
"orientation": "portrait", |
"orientation": "portrait", |
||||
"short_name": "Ghostfolio", |
"short_name": "Ghostfolio", |
||||
"start_url": "/${languageCode}/", |
"start_url": "/${languageCode}/", |
||||
"theme_color": "#FFFFFF", |
"theme_color": "#FFFFFF", |
||||
"url": "${rootUrl}" |
"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