import type { NextConfig } from "next"; const nextConfig: NextConfig = { // Quiet the "multiple lockfiles" warning from Next 16 by pinning the root. // See https://nextjs.org/docs/app/api-reference/config/next-config-js/turbopack#root-directory turbopack: { root: __dirname, }, }; export default nextConfig;