Where do I put shared code in Edge Function?

Is it possible to add a _shared folder and define a file in there that is used across other functions?
And have them imported like it that?

import { validateAppleCertificateChain, hasValidCertificateStructure } from '../_shared/apple-certificate-validator.ts';

The problem is when I deploy this, I don't see the function under _shared appearing anywhere.
Was this page helpful?