chore(web): quiet workspace build warnings

This commit is contained in:
saravanakumardb1 2026-03-10 09:31:55 -07:00
parent 02f8193b5f
commit d56ccdec8c
2 changed files with 3 additions and 0 deletions

View File

@ -115,6 +115,7 @@ Stack: Next.js 16 + React 19 + TypeScript
- `npm test`
- `npm run typecheck`
- `npm run build`
- Hardened Next.js build config by setting `outputFileTracingRoot`, removing the repeated workspace-root warning during `web` production builds
# Open Questions

View File

@ -1,3 +1,4 @@
import path from "node:path";
import type { NextConfig } from "next";
const securityHeaders = [
@ -20,6 +21,7 @@ const securityHeaders = [
];
const nextConfig: NextConfig = {
outputFileTracingRoot: path.join(process.cwd(), ".."),
async headers() {
return [
{