mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-06 12:27:44 +00:00
12 lines
244 B
TypeScript
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;
|