# Importing Stripe or other modules from esm.sh on Deno Edge Functions throws an error

Try adding `?target=deno` to the import path of the module. For Stripe, the updated import would be:

```
import Stripe from "https://esm.sh/stripe@11.2.0?target=deno";
```
