Files
memegoat/frontend/next.config.ts
Mathis HERRIOT 9c45bf11e4
Some checks failed
Backend Tests / test (push) Failing after 5m0s
Lint / lint (push) Failing after 4m56s
chore: fix inconsistent indentation and formatting in Next.js config
2026-01-10 16:34:00 +01:00

10 lines
177 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
reactCompiler: true,
output: "standalone",
};
export default nextConfig;