/** * llmindex.io — Next.js configuration (standalone output for m3u96b deployment) * Author: Simon-Pierre Boucher * Contact: contact@spboucher.ai * License: Proprietary — © Simon-Pierre Boucher, all rights reserved */ /** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', transpilePackages: ['@llmindex/db', '@llmindex/scoring', '@llmindex/ui', '@llmindex/items'], experimental: { outputFileTracingIncludes: { '/': ['./node_modules/.prisma/client/**'], }, }, }; export default nextConfig;