Skip to content
This repository was archived by the owner on Sep 3, 2025. It is now read-only.

Commit 6712b67

Browse files
committed
fix: build issues
1 parent fd9a480 commit 6712b67

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

apps/docs/src/lib/auth-client.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { createAuthClient } from "better-auth/react";
2-
import { profileImageClient } from "@better-auth-kit/profile-image";
2+
// import { profileImageClient } from "@better-auth-kit/profile-image";
33

44
export const authClient = createAuthClient({
5-
plugins: [profileImageClient()],
5+
// plugins: [profileImageClient()],
66
});

apps/docs/src/lib/auth.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import {
88
import { UTApi } from "uploadthing/server";
99
import "dotenv/config";
1010

11-
const utapi = new UTApi({
12-
apiKey: process.env.UPLOADTHING_API_KEY!,
13-
});
11+
// const utapi = new UTApi({
12+
// apiKey: process.env.UPLOADTHING_API_KEY!,
13+
// });
1414

1515
export const auth = betterAuth({
1616
database: new Database("./test.db"),
@@ -24,9 +24,9 @@ export const auth = betterAuth({
2424
},
2525
},
2626
plugins: [
27-
profileImage({
28-
storageProvider: new UploadThingProvider(utapi),
29-
}),
27+
// profileImage({
28+
// storageProvider: new UploadThingProvider(utapi),
29+
// }),
3030
nextCookies(),
3131
],
3232
});

0 commit comments

Comments
 (0)