Hi @Michael_Rojkov,

The main issue here seems to be that the @vercel/blob isn’t supported: as explained in the docs

Atlas App Services automatically transpiles dependencies and also supports most built-in Node.js modules.

Thus, here it seems that this transpiling step failed: this isn’t uncommon, the App Services Function engine is partially compatible with Node.js v10, so possibly a previous version of the package may work, but this isn’t guaranteed either, as there are some unsupported features.

As an aside, about the line

      token: context.values.get("VERCEL_BLOB_TOKEN")

Please note that you cannot read a Secret directly, you need to access it via a linked value.