From 0f8bcbb43708545b3479ec233b4e510a010c1a8f Mon Sep 17 00:00:00 2001 From: Arnaud AMBROSELLI Date: Thu, 7 Dec 2023 12:32:12 +0100 Subject: [PATCH] fix: lang --- next.config.js | 7 +------ pages/_document.js | 13 +++++++++++++ 2 files changed, 14 insertions(+), 6 deletions(-) create mode 100644 pages/_document.js diff --git a/next.config.js b/next.config.js index 5b5bff3..767719f 100644 --- a/next.config.js +++ b/next.config.js @@ -1,9 +1,4 @@ /** @type {import('next').NextConfig} */ -const nextConfig = { - i18n: { - locales: ["fr"], - defaultLocale: "fr", - }, -} +const nextConfig = {} module.exports = nextConfig diff --git a/pages/_document.js b/pages/_document.js new file mode 100644 index 0000000..a862835 --- /dev/null +++ b/pages/_document.js @@ -0,0 +1,13 @@ +import { Html, Head, Main, NextScript } from "next/document" + +export default function Document() { + return ( + + + +
+ + + + ) +}