Skip to content

Commit

Permalink
Add 3 random export config
Browse files Browse the repository at this point in the history
  • Loading branch information
istarkov committed Apr 22, 2024
1 parent befee0f commit ba1495e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apps/builder/app/routes/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ export const meta: MetaFunction = () => {
};

export default Root;

export const config = {
maxDuration: 20, // seconds
};
4 changes: 4 additions & 0 deletions apps/builder/app/routes/rest.assets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,7 @@ export const action = async (props: ActionFunctionArgs) => {
}
}
};

export const config = {
maxDuration: 20, // seconds
};
4 changes: 4 additions & 0 deletions apps/builder/app/routes/rest.patch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -335,3 +335,7 @@ export const action = async ({ request }: ActionFunctionArgs) => {
return { errors: e instanceof Error ? e.message : JSON.stringify(e) };
}
};

export const config = {
maxDuration: 20, // seconds
};

0 comments on commit ba1495e

Please sign in to comment.