Files
better-auth/demo/nextjs/next.config.ts
2024-09-17 12:07:17 +03:00

12 lines
220 B
TypeScript

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