We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bf7f7b commit 17f994eCopy full SHA for 17f994e
next.config.ts
@@ -2,7 +2,7 @@ import type { NextConfig } from "next";
2
import createNextIntlPlugin from "next-intl/plugin";
3
import bundleAnalyzer from "@next/bundle-analyzer";
4
5
-const withNextIntl = createNextIntlPlugin();
+const withNextIntl = createNextIntlPlugin('./src/i18n/request.ts');
6
7
const withBundleAnalyzer = bundleAnalyzer({
8
enabled: process.env.ANALYZE === "true",
@@ -17,7 +17,6 @@ const nextConfig: NextConfig = {
17
// Enabling it could improve image loading performance if the compatibility issues are resolved.
18
images: { unoptimized: true },
19
trailingSlash: true,
20
- turbopack: {},
21
};
22
23
export default withBundleAnalyzer(withNextIntl(nextConfig));
0 commit comments