Skip to content

Commit

Permalink
Merge pull request #37 from Arzte/favicon
Browse files Browse the repository at this point in the history
Add favicon's
  • Loading branch information
ltouroumov authored Sep 13, 2024
2 parents a0d7f47 + 1fe09ae commit 6e14d36
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 0 deletions.
42 changes: 42 additions & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,48 @@ export default defineNuxtConfig({
buildAssetsDir: 'assets',
head: {
title: 'Interactive CYOA',
link: [
{
rel: 'icon',
type: 'image/x-icon',
href: 'favicon.ico',
},
{
rel: 'icon',
type: 'image/png',
sizes: '32x32',
href: 'favicon-32x32.png',
},
{
rel: 'icon',
type: 'image/png',
sizes: '16x16',
href: 'favicon-16x16.png',
},
{
rel: 'android-chrome',
type: 'image/png',
sizes: '92x192',
href: 'android-chrome-92x192.png',
},
{
rel: 'andriod-chrome',
type: 'image/png',
sizes: '512x512',
href: 'android-chrome-512x512.png',
},
{
rel: 'apple-touch-icon',
type: 'image/png',
sizes: '180x180',
href: 'apple-touch-icon.png',
},
{ rel: 'manifest', href: '/site.webmanifest' },
],
noscript: [
// <noscript>JavaScript is required</noscript>
{ children: 'JavaScript is required' },
],
},
},

Expand Down
Binary file added public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}

0 comments on commit 6e14d36

Please sign in to comment.