Services: Admin-Compliance, Backend-Compliance, AI-Compliance-SDK, Consent-SDK, Developer-Portal, PCA-Platform, DSMS Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
332 B
JavaScript
15 lines
332 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
transpilePackages: [
|
|
'@breakpilot/compliance-sdk-react',
|
|
'@breakpilot/compliance-sdk-core',
|
|
'@breakpilot/compliance-sdk-types',
|
|
],
|
|
experimental: {
|
|
serverComponentsExternalPackages: [],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|