feat: update next.config.ts for standalone output and enhance package.json scripts for local and test environments

This commit is contained in:
azeeee05
2026-09-07 20:09:11 +05:30
parent f261365f3d
commit ec24991998
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: "standalone",
};
export default nextConfig;
+4
View File
@@ -4,9 +4,13 @@
"private": true,
"scripts": {
"dev": "next dev",
"local": "dotenv -e .env -- next dev",
"test": "dotenv -e .env.test -- next dev",
"build": "next build",
"build:local": "dotenv -e .env -- next build",
"build:production": "dotenv -e .env.production -- next build",
"build:test": "dotenv -e .env.test -- next build",
"prod": "dotenv -e .env.production -- next start",
"start": "next start",
"lint": "eslint"
},