We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
antfu
Learn more about funding links in repositories.
Report abuse
theme_color
description
1 parent 2949c3a commit 53568d0Copy full SHA for 53568d0
src/options.ts
@@ -105,9 +105,11 @@ export async function resolveOptions(ctx: PWAPluginContext): Promise<ResolvedVit
105
const defaultManifest: Partial<ManifestOptions> = {
106
name: pkg.name,
107
short_name: pkg.name,
108
+ description: pkg.description,
109
start_url: basePath,
110
display: 'standalone',
111
background_color: '#ffffff',
112
+ theme_color: '#42b883',
113
lang: 'en',
114
scope,
115
}
src/types.ts
@@ -530,7 +530,7 @@ export interface ManifestOptions {
530
*/
531
background_color: string
532
/**
533
- * @default '#42b883
+ * @default `#42b883`
534
535
theme_color: string
536
0 commit comments