Files
touchbase/next.config.ts

12 lines
322 B
TypeScript
Raw Normal View History

2026-04-29 12:20:56 -04:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
2026-05-05 10:39:59 -04:00
// 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,
},
2026-04-29 12:20:56 -04:00
};
export default nextConfig;