mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 04:19:20 +00:00
11 lines
193 B
TypeScript
11 lines
193 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
webpack: (config) => {
|
|
config.externals.push("@libsql/client");
|
|
return config;
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|