Steven
Steven
ZEIT Now doesn't ship Chrome so you would have to consult the docs for selenium-webdriver to find out where it installs Chrome for Linux. If you can set a path,...
You can avoid the breaking change by adding [rewrites](https://nextjs.org/docs/api-reference/next.config.js/rewrites) to `next.config.js` ```js { rewrites: [{ source: '(.*)', destination: '/api'] } ```
If its working fine locally, why does the config need to change?
What is the error? Can you use `--ignore-engines` flag?
It works with `yarn --ignore-engines build`
Looks like facebook is stripping the query string. Did you try encoding the URI?
What is safe_image? Perhaps they assume the query string is malicious and strip it? Or maybe it is too long?
That might work, but a better solution for your use case is to fork this repo and make changes that suite your needs. Likely any major change is going to...
Thanks for investigating! I'll circle back here when I have more time and I'll leave this issue open in case someone runs into the same problem. Great work 🎉
Hi @deanpcmad This is expected when the `md=1` option is used since markdown accepts arbitrary html. You can use `md=0` to use literal text instead. You could also add something...