From bc54439531a77fe261faf7bb40e1b360de339a70 Mon Sep 17 00:00:00 2001 From: Thomas KLEIN Date: Sat, 25 Jan 2025 21:39:24 +0100 Subject: [PATCH] Add properties so it can be overriden --- next.config.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/next.config.ts b/next.config.ts index 53e48e0..8ec544c 100644 --- a/next.config.ts +++ b/next.config.ts @@ -1,13 +1,16 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { + reactStrictMode: true, + output: "standalone", + basePath: "", webpack(config) { config.module.rules.push({ test: /\.svg$/, use: ['@svgr/webpack'] }); return config; - } + }, }; export default nextConfig;