14 lines
546 B
JavaScript
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;
|