Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • minerva/frontend
1 result
Show changes
Commits on Source (3)
#!/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 />
......