Logs current version on startup and checks GitHub for newer releases. Only runs in production, output stays in server logs (no client exposure).
13 lines
292 B
TypeScript
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);
|