Files
better-auth/demo/nextjs/next.config.ts
Bereket Engida c945d1ba95 feat: demo
2024-09-16 13:53:41 +03:00

12 lines
244 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
webpack: (config) => {
config.externals.push("better-sqlite3", "@libsql/client")
return config;
},
/* config options here */
};
export default nextConfig;