We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25acd96 commit d9a889dCopy full SHA for d9a889d
packages/astro/src/default/components/Logo.astro
@@ -32,8 +32,8 @@ const logoDark = readLogoFile('logo-dark') ?? logo;
32
if (!logo) {
33
console.warn(
34
[
35
- `No logo found in public/. Supported filenames are: logo.(${LOGO_EXTENSIONS.join('|')}) `,
36
- `(for the light theme) and logo-dark.(${LOGO_EXTENSIONS.join('|')}) (for the dark theme).`,
+ `No logo found in public/. Supported filenames are: logo.(${LOGO_EXTENSIONS.join('|')}). `,
+ `You can overwrite the logo for dark-mode by providing a logo-dark.(${LOGO_EXTENSIONS.join('|')}).`,
37
].join(''),
38
);
39
}
0 commit comments