Pure HTML
All the previous releases used a dedicated error.ejs
template which is automatically rendered by BigPipe when the pagelet fails to render. But we were missing the ejs
package in our package.json
. This caused every pagelet to depend on ejs
in order to function.
Depending on a template engine by default is quite a heavy dependency so we made the decision to transform our template to a pure html
template instead. We made some changes to the our template and to our temper project in order to support basic replacements of template {tags}
.