UPDATE: Optimaze
All checks were successful
Gitea Auto Deploy / Deploy-Container (push) Successful in 1m15s

This commit is contained in:
2025-09-27 09:18:05 +07:00
parent f6abcc9024
commit d3e5dbcaff
4 changed files with 140 additions and 28 deletions

View File

@@ -1,7 +1,11 @@
import createNextIntlPlugin from "next-intl/plugin";
import type { NextConfig } from "next";
import bundleAnalyzer from "@next/bundle-analyzer";
const withBundleAnalyzer = bundleAnalyzer({
enabled: process.env.ANALYZE === "true",
});
const withNextIntl = createNextIntlPlugin()
const nextConfig: NextConfig = {
@@ -33,4 +37,4 @@ const nextConfig: NextConfig = {
};
export default withNextIntl(nextConfig);
export default withBundleAnalyzer(withNextIntl(nextConfig));