Files
bknd/examples/nextjs/next.config.ts
2024-11-16 12:01:47 +01:00

19 lines
361 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
reactStrictMode: true
/*transpilePackages: [
"@rjsf/core",
"@libsql/isomorphic-fetch",
"@libsql/isomorphic-ws",
"@libsql/kysely-libsql"
],
experimental: {
esmExternals: "loose"
}*/
};
export default nextConfig;