error in trying to create database schema with the cli

Hey folks here is my better-auth config
import { db } from "~/server/db";
import { api } from "~/trpc/server";
import { betterAuth } from "better-auth";
import { drizzleAdapter } from "better-auth/adapters/drizzle";
import { nextCookies } from "better-auth/next-js";

export const auth = betterAuth({
database: drizzleAdapter(db, {
provider: "pg",
}),
emailVerification: {
expiresIn: 60 * 10,
sendOnSignUp: true,
async sendVerificationEmail(data) {
await api.resend.verify({ email: data.user.email, url: data.url });
},
},
emailAndPassword: {
enabled: true,
autoSignIn: true,
resetPasswordTokenExpiresIn: 60 * 10,
async sendResetPassword(data) {
await api.resend.resetPassword({ email: data.user.email, url: data.url });
},
},
rateLimit: {
storage: "database",
window: 60,
max: 10,
},
session: {
expiresIn: 30 * 24 * 60 * 60,
updateAge: 29 * 24 * 60 * 60,
cookieCache: {
enabled: true,
maxAge: 60 * 10,
},
},
plugins: [nextCookies()],
});
import { db } from "~/server/db";
import { api } from "~/trpc/server";
import { betterAuth } from "better-auth";
import { drizzleAdapter } from "better-auth/adapters/drizzle";
import { nextCookies } from "better-auth/next-js";

export const auth = betterAuth({
database: drizzleAdapter(db, {
provider: "pg",
}),
emailVerification: {
expiresIn: 60 * 10,
sendOnSignUp: true,
async sendVerificationEmail(data) {
await api.resend.verify({ email: data.user.email, url: data.url });
},
},
emailAndPassword: {
enabled: true,
autoSignIn: true,
resetPasswordTokenExpiresIn: 60 * 10,
async sendResetPassword(data) {
await api.resend.resetPassword({ email: data.user.email, url: data.url });
},
},
rateLimit: {
storage: "database",
window: 60,
max: 10,
},
session: {
expiresIn: 30 * 24 * 60 * 60,
updateAge: 29 * 24 * 60 * 60,
cookieCache: {
enabled: true,
maxAge: 60 * 10,
},
},
plugins: [nextCookies()],
});
but every time I run npx @better-auth/cli generate I get the following error
ERROR [Better Auth]: Please remove import 'server-only' from your auth config file temporarily. The CLI cannot resolve the configuration with it included. You can re-add it after running the CLI.
ERROR [Better Auth]: Please remove import 'server-only' from your auth config file temporarily. The CLI cannot resolve the configuration with it included. You can re-add it after running the CLI.
Solution:
Likely due to your imports. Could you try this without your api import and just comment out all of the functions using it?...
Jump to solution
3 Replies
Solution
Ping
Ping3w ago
Likely due to your imports. Could you try this without your api import and just comment out all of the functions using it?
Ping
Ping3w ago
It could possibly also be due to path alias imports as well. So if my first idea doesn't work, try changing the ~ in your import paths to use proper paths to each file
Aditya Kirad
Aditya KiradOP3w ago
okay it worked

Did you find this page helpful?