From 6c4ea59e1216e7b918f7fd616025ed82b881f24a Mon Sep 17 00:00:00 2001 From: ZareMate <0.zaremate@gmail.com> Date: Mon, 14 Apr 2025 13:05:40 +0200 Subject: [PATCH] fixed next.config.mjs --- next.config.js => next.config.mjs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) rename next.config.js => next.config.mjs (93%) diff --git a/next.config.js b/next.config.mjs similarity index 93% rename from next.config.js rename to next.config.mjs index 18bfdca..71866e8 100644 --- a/next.config.js +++ b/next.config.mjs @@ -4,12 +4,15 @@ */ import "./src/env.js"; + + +/** @type {import("next").NextConfig} */ const nextConfig = { reactStrictMode: true, eslint: { ignoreDuringBuilds: true, - output: "standalone", }, + output: "standalone", allowedDevOrigins: [ "http://localhost:3000", "http://10.0.0.1:3000", @@ -29,4 +32,6 @@ const nextConfig = { }; + + export default nextConfig;