Files
touchbase/next.config.ts
2026-05-05 10:39:59 -04:00

12 lines
322 B
TypeScript

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;