Files
jumpa-app/next.config.ts
pxe_gitea d3c3aa61b8
JUMPA App CI / build (push) Waiting to run
[TSM.ID] jumpa-app - production deploy via Phantom V5.2
2026-06-02 03:13:07 +07:00

18 lines
340 B
TypeScript

import type { NextConfig } from "next";
// [TSM.ID].[11031972] — JUMPA.ID Next.js Configuration
const nextConfig: NextConfig = {
async rewrites() {
return [
{
source: '/health',
destination: '/api/health',
},
];
},
poweredByHeader: false,
reactStrictMode: true,
};
export default nextConfig;