Files
echecsfrance/next.config.js
T
Timothy Armes c5a1503684 Localisation (#39)
* Localisation

* Update tests

* Fix map markers in English view

* Fix typo
2023-07-03 20:14:19 +02:00

14 lines
327 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {};
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(withNextIntl({}));