feat: implement monthly glycemic report PDF generation and configure production build settings

This commit is contained in:
jeremy bayse
2026-04-27 11:25:51 +02:00
parent e7f151d14e
commit 8df7a5ace8
4 changed files with 25 additions and 12 deletions

View File

@@ -1,7 +1,10 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: "standalone",
poweredByHeader: false,
productionBrowserSourceMaps: false,
reactStrictMode: true,
};
export default nextConfig;