next.config.js 280 B

12345678910111213
  1. /** @type {import('next').NextConfig} */
  2. const nextConfig = {
  3. async rewrites() {
  4. return [
  5. {
  6. source: '/api/:path*',
  7. destination: `${process.env.NEXT_PUBLIC_API_URL}/api/:path*`,
  8. },
  9. ];
  10. },
  11. };
  12. module.exports = nextConfig;