Files
jkhsakha-web/next.config.ts
2026-03-24 09:21:38 +09:00

17 lines
434 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
serverExternalPackages: [
"@duckdb/node-api",
"duckdb",
"duckdb-async",
// "@duckdb/node-bindings-darwin-arm64", // Include platform-specific bindings
// "@duckdb/node-bindings-linux-x64" // Include platform-specific bindings
],
reactCompiler: true,
reactStrictMode: true,
};
export default nextConfig;