Files
SRCmail/next.config.ts
T
Matthieu MALVACHEandMatthieu MALVACHE a3fe9deaa6 feat: add server-side version update check
Logs current version on startup and checks GitHub for newer releases.
Only runs in production, output stays in server logs (no client exposure).
2026-02-28 14:59:11 +01:00

13 lines
292 B
TypeScript

import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
const nextConfig: NextConfig = {
output: "standalone",
turbopack: {
root: import.meta.dirname,
},
};
const withNextIntl = createNextIntlPlugin();
export default withNextIntl(nextConfig);