next.config.ts 332 B

12345678910111213141516
  1. import type { NextConfig } from "next";
  2. const nextConfig: NextConfig = {
  3. output: 'standalone',
  4. experimental: {
  5. //outputFileTracingRoot: undefined, // Helps with Docker builds
  6. },
  7. env: {
  8. NEXT_PUBLIC_API_CORE_URL: process.env.NEXT_PUBLIC_API_CORE_URL,
  9. },
  10. /* config options here */
  11. };
  12. export default nextConfig;