DEV Community

Discussion on: Setting up proxy in Next.js for DEV environment

Collapse
 
george3447 profile image
Georgekutty Antony • Edited

Absolutely, some thing like the following should work.

const withPlugins = require('next-compose-plugins');
const sass = require('@zeit/next-sass');

module.exports = withPlugins([
  [sass],
], {
  async rewrites() {
      return !process.env.NODE_ENV === 'production'
      ? [
          {
            source: '/api/:slug*',
            destination: `http://localhost:3333/api/:slug*`,
          },
          {
            source: '/images/:slug*',
            destination: `http://localhost:3333/images/:slug*`,
          },
        ]
      : [];
   }
});
Enter fullscreen mode Exit fullscreen mode