We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c63ce03 commit 245cc65Copy full SHA for 245cc65
next.config.ts
@@ -1,7 +1,9 @@
1
import type { NextConfig } from "next";
2
+import withVercelToolbar from "@vercel/toolbar/plugins/next";
3
-const nextConfig: NextConfig = {
4
- /* config options here */
5
-};
+const toolbar = withVercelToolbar();
+/* config options here */
6
7
-export default nextConfig;
+const nextConfig: NextConfig = {};
8
+
9
+export default toolbar(nextConfig);
package.json
@@ -11,6 +11,7 @@
11
"dependencies": {
12
"@clerk/clerk-sdk-node": "^5.1.6",
13
"@types/node-fetch": "^2.6.12",
14
+ "@vercel/toolbar": "^0.1.34",
15
"flags": "^4.0.0",
16
"next": "15.1.6",
17
"node-fetch": "^3.3.2",
0 commit comments