1064a0362b
Captures the existing lovelope.app codebase (Next.js App Router, custom Tailwind components, Prisma) as a rollback point prior to adopting shadcn/ui and a mobile-first redesign. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
10 lines
198 B
JavaScript
10 lines
198 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
experimental: {
|
|
serverComponentsExternalPackages: ['@prisma/client'],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|