e-verify/next.config.js
2024-05-14 22:19:14 +07:00

16 lines
278 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: false,
async rewrites() {
return [
{
source: '/api/:path*',
destination: process.env.NEXT_PUBLIC_BACKEND_API + ':path*',
},
]
},
}
module.exports = nextConfig