We're a place where coders share, stay up-to-date and grow their careers.
Great article, thank you so much!
Hey, Can I use this feature with next-compose-plugins ? Wanted to use multiple pluings like withSass, withImages along with it.
next-compose-plugins
Thank you
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*`, }, ] : []; } });
Great article, thank you so much!
Hey,
Can I use this feature with
next-compose-plugins
?Wanted to use multiple pluings like withSass, withImages along with it.
Thank you
Absolutely, some thing like the following should work.