Skip to content

Commit

Permalink
asd
Browse files Browse the repository at this point in the history
  • Loading branch information
bartosz-skejcik committed Dec 22, 2023
1 parent 50353ef commit d618b85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/api/edgestore/[...edgestore]/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ const edgeStoreRouter = es.router({
const handler = createEdgeStoreNextHandler({
router: edgeStoreRouter,
provider: EdgeStoreProvider({
accessKey: process.env.EDGE_STORE_ACCESS_KEY,
secretKey: process.env.EDGE_STORE_SECRET_KEY,
accessKey: process.env.EDGE_STORE_ACCESS_KEY || "",
secretKey: process.env.EDGE_STORE_SECRET_KEY || "",
}), // this is the default provider and can be omitted
});

Expand Down

0 comments on commit d618b85

Please sign in to comment.