Skip to content

Commit 6d3bd07

Browse files
chore: favicon
1 parent 319f136 commit 6d3bd07

21 files changed

+37
-2
lines changed

.vitepress/config.mts

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,15 @@ export default defineConfig({
1212
['meta', { name: 'revisit-after', content: '1 days' }],
1313
['meta', { name: 'author', content: 'Marko (ServerlessLife)' }],
1414
['meta', { name: 'keywords', content: 'aws, lambda, debugger, serverless, aws-lambda, javascript, typescript, dev-tools, lambda-debugger, aws-cdk, serverless-framework, sls, aws-sam, sam, terraform, local-debugging, cloud-development' }],
15-
['link', { rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' }],
16-
['link', { rel: 'icon', type: 'image/png', href: '/favicon.png' }],
15+
['link', { rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon_light.png' , media:"(prefers-color-scheme: light)" }],
16+
['link', { rel: 'icon', type: 'image/png', sizes: '32x32', href: '/favicon-32x32_light.png', media:"(prefers-color-scheme: light)" }],
17+
['link', { rel: 'icon', type: 'image/png', sizes: '16x16', href: '/favicon-16x16_light.png', media:"(prefers-color-scheme: light)" }],
18+
['link', { rel: 'manifest', href: '/site.webmanifest' }],
19+
['meta', { name: 'msapplication-TileColor', content: '#DD1239' }],
20+
['meta', { name: 'theme-color', content: '#ffffff' }],
21+
['link', { rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon_dark.png' , media:"(prefers-color-scheme: dark)" }],
22+
['link', { rel: 'icon', type: 'image/png', sizes: '32x32', href: '/favicon-32x32_dark.png', media:"(prefers-color-scheme: dark)" }],
23+
['link', { rel: 'icon', type: 'image/png', sizes: '16x16', href: '/favicon-16x16_dark.png', media:"(prefers-color-scheme: dark)" }],
1724
['meta', { property: 'og:type', content: 'website' }],
1825
['meta', { property: 'og:locale', content: 'en' }],
1926
['meta', { property: 'og:title', content: 'Lambda Live Debugger | Remote debugging AWS Lambda functions' }],
13 KB
Loading
12.4 KB
Loading
43 KB
Loading
41.3 KB
Loading

public/apple-touch-icon_dark.png

11.9 KB
Loading

public/apple-touch-icon_light.png

11.4 KB
Loading

public/browserconfig.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<browserconfig>
3+
<msapplication>
4+
<tile>
5+
<square150x150logo src="/mstile-150x150_light.png"/>
6+
<TileColor>#DD1239</TileColor>
7+
</tile>
8+
</msapplication>
9+
</browserconfig>

public/favicon-16x16_dark.png

1.29 KB
Loading

public/favicon-16x16_light.png

1.28 KB
Loading

public/favicon-32x32_dark.png

1.79 KB
Loading

public/favicon-32x32_light.png

1.75 KB
Loading

public/favicon_dark.ico

14.7 KB
Binary file not shown.

public/favicon_light.ico

14.7 KB
Binary file not shown.
File renamed without changes.
File renamed without changes.

public/logo_dark.png

8.65 KB
Loading

public/logo_light.png

8.61 KB
Loading

public/mstile-150x150_dark.png

8.71 KB
Loading

public/mstile-150x150_light.png

8.36 KB
Loading

public/site.webmanifest

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"name": "",
3+
"short_name": "",
4+
"icons": [
5+
{
6+
"src": "/android-chrome-192x192_light.png",
7+
"sizes": "192x192",
8+
"type": "image/png"
9+
},
10+
{
11+
"src": "/android-chrome-512x512_light.png",
12+
"sizes": "512x512",
13+
"type": "image/png"
14+
}
15+
],
16+
"theme_color": "#ffffff",
17+
"background_color": "#ffffff",
18+
"display": "standalone"
19+
}

0 commit comments

Comments
 (0)