Skip to content

Commit

Permalink
Fixed outdir
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanM04 committed Oct 10, 2022
1 parent 8529274 commit aa95030
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/integrations/vercel/src/serverless/adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default function vercelEdge(): AstroIntegration {
buildConfig.serverEntry = serverEntry = 'entry.js';
buildConfig.client = new URL('./static/', _config.outDir);
buildConfig.server = buildTempFolder = new URL('./dist/', _config.root);
functionFolder = new URL('./functions/.render.func/', _config.outDir);
functionFolder = new URL('./functions/render.func/', _config.outDir);
},
'astro:build:done': async ({ routes }) => {
// Copy necessary files (e.g. node_modules/)
Expand Down

0 comments on commit aa95030

Please sign in to comment.