Files
echecsfrance/next.config.js
T
2023-07-17 11:49:07 +02:00

12 lines
323 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({}));