e-verify/next.config.js

16 lines
278 B
JavaScript
Raw Normal View History

2024-05-14 22:19:14 +07:00
/** @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