Localisation (#39)

* Localisation

* Update tests

* Fix map markers in English view

* Fix typo
This commit is contained in:
Timothy Armes
2023-07-03 20:14:19 +02:00
committed by GitHub
parent 279439f34d
commit c5a1503684
41 changed files with 881 additions and 426 deletions
+5 -1
View File
@@ -5,5 +5,9 @@ const withBundleAnalyzer = require("@next/bundle-analyzer")({
enabled: process.env.ANALYZE === "true",
});
const withNextIntl = require('next-intl/plugin')(
'./i18n.ts'
);
module.exports = nextConfig;
module.exports = withBundleAnalyzer({});
module.exports = withBundleAnalyzer(withNextIntl({}));