Files
2026-07-17 21:48:37 +05:30

14 lines
546 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
// Disabled so dev matches production render behaviour (no double-mount of
// effects). Keeps imperative DOM effects like the jump-to-message highlight
// and one-shot sends deterministic.
reactStrictMode: false,
// The SDK is shipped as TypeScript source in a workspace package, so Next must transpile it.
transpilePackages: ["@lynkd/messaging-inbox-sdk"],
eslint: { ignoreDuringBuilds: true },
typescript: { ignoreBuildErrors: true },
};
export default nextConfig;