parent
90bb081040
commit
e3ac70b2a4
@ -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