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;