Remove next-i18next + renamed GA workflow

dependabot/npm_and_yarn/typescript-eslint/parser-4.33.0
guusvanmeerveld 2 years ago
parent 1b67422258
commit 8d72a759f9

@ -39,12 +39,17 @@ jobs:
- name: Export website
run: yarn export
env:
GITHUB_USERNAME: ${{ GITHUB_REPOSITORY_OWNER }}
- name: Create .nojekyll file
run: touch out/.nojekyll
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./out
publish_dir: out
docker:
needs: check

@ -1,6 +0,0 @@
module.exports = {
i18n: {
locales: ['en', 'nl'],
defaultLocale: 'en',
},
};

@ -15,7 +15,6 @@
"chalk": "^4.1.2",
"milligram": "^1.4.1",
"next": "^11.1.2",
"next-i18next": "^8.8.0",
"next-themes": "^0.0.15",
"react": "^17.0.2",
"react-dom": "^17.0.2",

@ -2,8 +2,6 @@ import { ThemeProvider } from 'next-themes';
import type { AppProps } from 'next/app';
import { appWithTranslation } from 'next-i18next';
import 'milligram';
import '@styles/montserrat.css';
@ -18,4 +16,4 @@ const App = ({ Component, pageProps }: AppProps): JSX.Element => {
);
};
export default appWithTranslation(App);
export default App;

Loading…
Cancel
Save