From bcea73051bc03980ff5f11daa3bbbebbb4142535 Mon Sep 17 00:00:00 2001 From: AmirReza Jamali Date: Tue, 28 Apr 2026 09:33:44 +0330 Subject: [PATCH] chore(env): update application version to 2.0.1 and enhance output file tracing in Next.js configuration --- .env.production | 2 +- next.config.mjs | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.env.production b/.env.production index ce0a55a..54efe41 100644 --- a/.env.production +++ b/.env.production @@ -1,4 +1,4 @@ -NEXT_PUBLIC_APP_VERSION=2.0.0 +NEXT_PUBLIC_APP_VERSION=2.0.1 NEXT_PUBLIC_TOAST_AUTO_CLOSE_DURATION=2500 NEXT_PUBLIC_FIREBASE_API_KEY=AIzaSyCTjdsk2jE34IfnvSKP1JMTIf_Abd7tbt0 NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN=opplens-270d1.firebaseapp.com diff --git a/next.config.mjs b/next.config.mjs index bc2eaf7..c31272d 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,6 +1,9 @@ /** @type {import("next").NextConfig} */ const nextConfig = { output: "standalone", + outputFileTracingIncludes: { + "/*": ["./.next/static/**/*", "./public/**/*"], + }, images: { remotePatterns: [ { @@ -34,5 +37,4 @@ const nextConfig = { ]; }, }; - export default nextConfig;