I have some functions that I’d like to deploy, but they use data from files in a folder in node_modules without directly specifying each path using require
, so those data files don’t get bundled with the function.
It feels like Lambda layers might be a good place to store this extra data for use in Netlify functions. Is it possible to configure a function so that it has access to one or more layers?