Hello, I am using 2 plugins. Custom plugin for generating extra content backed by API and jekyll-redirect-from
plugin to create redirects to the additionally generated content as well.
This is my _config.yml
plugins:
- custom-plugin
- jekyll-redirect-from
However, the order is not respected and the redirect plugin is executed first therefore the redirects do not work correctly.
I am forced to use the priority :highest
option in my plugin. This does not seem right as the plugin is for public use.