2026-01-18 23:33:05 +01:00
|
|
|
import type { NextConfig } from 'next';
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
|
|
|
|
transpilePackages: ['@prisma-uml/parser'],
|
|
|
|
|
output: 'standalone',
|
|
|
|
|
experimental: {
|
|
|
|
|
optimizePackageImports: ['@heroicons/react'],
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|