From 9c45bf11e4a6475deb8a743d57fa037b8a2de555 Mon Sep 17 00:00:00 2001 From: Mathis HERRIOT <197931332+0x485254@users.noreply.github.com> Date: Sat, 10 Jan 2026 16:34:00 +0100 Subject: [PATCH] chore: fix inconsistent indentation and formatting in Next.js config --- frontend/next.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/next.config.ts b/frontend/next.config.ts index 6533f2f..1a529f0 100644 --- a/frontend/next.config.ts +++ b/frontend/next.config.ts @@ -1,9 +1,9 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ - reactCompiler: true, - output: 'standalone', + /* config options here */ + reactCompiler: true, + output: "standalone", }; export default nextConfig;