Skip to content

Commit

Permalink
🐛 Fix favicons and manifest.json for GitHub pages
Browse files Browse the repository at this point in the history
  • Loading branch information
splinter98 committed Aug 19, 2023
1 parent 19187bf commit 06da21c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
import { Metadata } from "next"
import './global.css'


export const metadata: Metadata = {
title: "TTRPG Damage Calculator",
description: "Simple TTRPG Damage Calculator",
themeColor: '#000000',
icons: {
icon: '/favicon.ico',
apple: '/apple-touch-icon.png'
icon: '/damage-calcualtor/favicon.ico',
apple: '/damage-calcualtor/apple-touch-icon.png'
},
manifest: '/manifest.json'
manifest: '/damage-calcualtor/manifest.json'
}

export default function RootLayout({
Expand Down

0 comments on commit 06da21c

Please sign in to comment.