Skip to content
Snippets Groups Projects
Commit 2fa8bea8 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

Merge branch '256-min-323-favicon-url' into 'development'

Resolve "[MIN-323] favicon url"

Closes #256

See merge request !186
parents a58f0b94 e92aee78
No related branches found
No related tags found
2 merge requests!223reset the pin numbers before search results are fetch (so the results will be...,!186Resolve "[MIN-323] favicon url"
Pipeline #89346 passed
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
npx --no -- commitlint --edit ${1}
# npx --no -- commitlint --edit ${1}
echo '🏗️👷 Styling your project before committing👷‍♂️🏗️'
echo 'please be patient, this may take a while...'
# Check ESLint and Prettier Standards
npm run format ||
(
......@@ -29,5 +29,5 @@ yarn run test ||
Check the test result and fix the tests.'
false;
)
echo '🎉 No error found: committing this now.... ✨🚀🏄‍♂️🍻'
import { Html, Head, Main, NextScript } from 'next/document';
import { Head, Html, Main, NextScript } from 'next/document';
import Script from 'next/script';
const Document = (): React.ReactNode => (
<Html>
<Head />
<Head>
<link rel="shortcut icon" href="./favicon.ico" />
</Head>
<body>
<Main />
<NextScript />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment