first commit

This commit is contained in:
2026-07-17 21:48:37 +05:30
commit f85599dac5
124 changed files with 10775 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
/** @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;