Problemunvalidated

functions failing because it was trying to run code in a folder that only contained the path to the folder in the virtual store — After running `pnpm install` inside the Azure Function app package. Tension: `node_modules/@azure/storage-queue` would not have any files, just, `../../../node_modules/.pnpm` symlink which wouldn't work because those files were outside of the Function App and therefore not deployed. Outcome: Add `.npmrc` at root and add `config node-linker=hoisted`.

e136fda4-0ff9-47bd-9f64-4ecdb3f9a819

functions failing because it was trying to run code in a folder that only contained the path to the folder in the virtual store — After running pnpm install inside the Azure Function app package. Tension: node_modules/@azure/storage-queue would not have any files, just, ../../../node_modules/.pnpm symlink which wouldn't work because those files were outside of the Function App and therefore not deployed. Outcome: Add .npmrc at root and add config node-linker=hoisted.