// File: next.config.mjs // Path: apps/web/next.config.mjs // Project: AI Risk Index — airiskindex.io // Author: Simon-Pierre Boucher // Contact: contact@spboucher.ai // Copyright © 2026 Simon-Pierre Boucher. All rights reserved. // // Description: Next.js configuration: workspace package transpilation, standalone output. /** @type {import('next').NextConfig} */ const nextConfig = { // Workspace packages ship TypeScript sources directly. transpilePackages: ["@airiskindex/scoring", "@airiskindex/db", "@airiskindex/ui"], // Deployed as `node .next/standalone/server.js` behind ngrok (CLAUDE.md §7). output: "standalone", }; export default nextConfig;