18 lines
340 B
TypeScript
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;
|