/* * next.config.ts * Purpose: Stores the Next.js build/runtime configuration for the app. * Used by: Next.js build and dev server. * Depends on: Next.js config schema and package transpilation needs. */ import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: 'standalone', }; export default nextConfig;