Files
Prisma-UML-Viewer/apps/web/next.config.ts
T

12 lines
247 B
TypeScript
Raw Normal View History

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;