1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-05-29 22:37:44 +02:00

build(deps): bump Node.js to 16.0.0 and npm to 8.0.0

BREAKING CHANGE: minimum supported Node.js >= 16.0.0 and npm >= 8.0.0

fixes #74
This commit is contained in:
Divlo
2021-11-06 17:52:04 +01:00
parent a30355582e
commit 1505b81233
18 changed files with 1769 additions and 1791 deletions

View File

@ -16,7 +16,7 @@ const Error404: React.FC<FooterProps> = (props) => {
<Header />
<main className='flex flex-col md:mx-auto md:max-w-4xl lg:max-w-7xl'>
<ErrorPage statusCode={404} message={t('errors:notFound')} />
<ErrorPage statusCode={404} message={t('errors:not-found')} />
</main>
<Footer version={version} />
</>

View File

@ -16,7 +16,7 @@ const Error500: React.FC<FooterProps> = (props) => {
<Header />
<main className='flex flex-col md:mx-auto md:max-w-4xl lg:max-w-7xl'>
<ErrorPage statusCode={500} message={t('errors:serverError')} />
<ErrorPage statusCode={500} message={t('errors:server-error')} />
</main>
<Footer version={version} />
</>