Skip to content

Commit

Permalink
update next, update max function runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
kualta committed Jun 30, 2024
1 parent faf5c9e commit 1b0d06e
Show file tree
Hide file tree
Showing 5 changed files with 122 additions and 110 deletions.
219 changes: 113 additions & 106 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"dependencies": {
"@aws-sdk/client-s3": "^3.588.0",
"@coinbase/wallet-sdk": "^3.7.2",
"@lens-protocol/client": "^2.3.1",
"@lens-protocol/metadata": "^1.2.0",
"@lens-protocol/react-web": "^2.3.1",
"@lens-protocol/client": "^2.3.1",
"@lens-protocol/wagmi": "^4.1.4",
"@next/bundle-analyzer": "^13.5.4",
"@radix-ui/react-accordion": "latest",
Expand Down Expand Up @@ -107,7 +107,7 @@
"autoprefixer": "^10.4.7",
"eslint": "^8.43.0",
"eslint-plugin-prettier": "^4.2.1",
"next": "latest",
"next": "^14.2.4",
"postcss": "^8.4.31",
"tailwindcss": "^3.2.0",
"typescript": "5.1.6",
Expand All @@ -119,4 +119,4 @@
"trustedDependencies": [
"@vercel/speed-insights"
]
}
}
2 changes: 2 additions & 0 deletions src/app/(sidebars)/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import Menu from "~/components/menu/Menu";
import { Sidebar } from "~/components/menu/Sidebar";

export const maxDuration = 60;

export default function SidebarLayout({
children,
}: {
Expand Down
3 changes: 3 additions & 0 deletions src/app/(sidebars)/u/[user]/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import { UserNavigation } from "~/components/user/UserNavigation";
import { UserProfile } from "~/components/user/UserProfile";
import { getUserByHandle } from "~/utils/getUserByHandle";


export const maxDuration = 60

export default async function layout({
children,
params,
Expand Down
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const metadata = {
description: "reach your people on pingpad",
};

export const maxDuration = 60;
export const maxDuration = 60

export default function RootLayout({
children,
Expand Down

0 comments on commit 1b0d06e

Please sign in to comment.