[ci] format

This commit is contained in:
matthewp 2023-01-27 15:22:30 +00:00 committed by fredkbot
parent 1c230f1037
commit cac11c98be
2 changed files with 2 additions and 2 deletions

View file

@ -50,7 +50,7 @@ function netlifyFunctions({
} }
}, },
'astro:build:done': async ({ routes, dir }) => { 'astro:build:done': async ({ routes, dir }) => {
const type = builders ? 'builders' : 'functions' const type = builders ? 'builders' : 'functions';
await createRedirects(_config, routes, dir, entryFile, type); await createRedirects(_config, routes, dir, entryFile, type);
}, },
}, },

View file

@ -145,7 +145,7 @@ export const createExports = (manifest: SSRManifest, args: Args) => {
return fnResponse; return fnResponse;
}; };
const handler = builders ? builder(myHandler) : myHandler const handler = builders ? builder(myHandler) : myHandler;
return { handler }; return { handler };
}; };