Skip to content

Commit

Permalink
fix(nitro): used named export for azure entry (#491)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Sep 6, 2021
1 parent cd0616e commit 903ab87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/entries/azure.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import '#polyfill'
import { parseURL } from 'ufo'
import { localCall } from '../server'

export default async function handle (context, req) {
export async function handle (context, req) {
let url: string
if (req.headers['x-ms-original-url']) {
// This URL has been proxied as there was no static file matching it.
Expand Down

0 comments on commit 903ab87

Please sign in to comment.