Files
breakpilot-compliance/breakpilot-compliance-sdk/apps/admin-dashboard/next.config.js
Benjamin Boenisch 4435e7ea0a Initial commit: breakpilot-compliance - Compliance SDK Platform
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>
2026-02-11 23:47:28 +01:00

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;