Skip to content

Commit 245cc65

Browse files
Implement code changes to enhance functionality and improve performance
1 parent c63ce03 commit 245cc65

File tree

3 files changed

+436
-4
lines changed

3 files changed

+436
-4
lines changed

next.config.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
import type { NextConfig } from "next";
2+
import withVercelToolbar from "@vercel/toolbar/plugins/next";
23

3-
const nextConfig: NextConfig = {
4-
/* config options here */
5-
};
4+
const toolbar = withVercelToolbar();
5+
/* config options here */
66

7-
export default nextConfig;
7+
const nextConfig: NextConfig = {};
8+
9+
export default toolbar(nextConfig);

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"dependencies": {
1212
"@clerk/clerk-sdk-node": "^5.1.6",
1313
"@types/node-fetch": "^2.6.12",
14+
"@vercel/toolbar": "^0.1.34",
1415
"flags": "^4.0.0",
1516
"next": "15.1.6",
1617
"node-fetch": "^3.3.2",

0 commit comments

Comments
 (0)