I have a lambda function that is supposed to return an HTML page.
This page needs a number of dynamic variables as well as custom stylesheets to function properly.
I have tried the regular way of returning HTML as a string, setting the correct content-type and substituting the dynamic variables I need within that string. This works.
However, I want to use a templating engine rather than writing out strings of HTML as Javascript.
I've tried using nunjucks but it's unable to find my HTML file since the build folder only has an app.js in it.