next-app/next.config.js
2023-02-19 14:01:11 +08:00

15 lines
274 B
JavaScript

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