We're a place where coders share, stay up-to-date and grow their careers.
Hey, sorry for the delay.
I'd look into the use of env variables here. Where you get the redirects in the middleware, we can do something like this..
const prodRedirects= require('../data/redirectsProd.json') let redirects = require('../data/redirects.json') if (process.env.NODE_ENV === 'production') { redirects = [...prodRedirects, ...redirects] }
This was a pretty quick example but would probably be the way I'd go
@jackabox good example, thank you!
Hey, sorry for the delay.
I'd look into the use of env variables here. Where you get the redirects in the middleware, we can do something like this..
This was a pretty quick example but would probably be the way I'd go
@jackabox good example, thank you!