diff --git a/docs/01-app/01-getting-started/02-project-structure.mdx b/docs/01-app/01-getting-started/02-project-structure.mdx index 37685d708ab2ab..f1a01f59795511 100644 --- a/docs/01-app/01-getting-started/02-project-structure.mdx +++ b/docs/01-app/01-getting-started/02-project-structure.mdx @@ -31,22 +31,22 @@ Top-level folders are used to organize your application's code and static assets Top-level files are used to configure your application, manage dependencies, run proxy, integrate monitoring tools, and define environment variables. -| | | -| ---------------------------------------------------------------------------- | --------------------------------------- | -| **Next.js** | | -| [`next.config.js`](/docs/app/api-reference/config/next-config-js) | Configuration file for Next.js | -| [`package.json`](/docs/app/getting-started/installation#manual-installation) | Project dependencies and scripts | -| [`instrumentation.ts`](/docs/app/guides/instrumentation) | OpenTelemetry and Instrumentation file | -| [`proxy.ts`](/docs/app/api-reference/file-conventions/proxy) | Next.js request proxy | -| [`.env`](/docs/app/guides/environment-variables) | Environment variables | -| [`.env.local`](/docs/app/guides/environment-variables) | Local environment variables | -| [`.env.production`](/docs/app/guides/environment-variables) | Production environment variables | -| [`.env.development`](/docs/app/guides/environment-variables) | Development environment variables | -| [`eslint.config.mjs`](/docs/app/api-reference/config/eslint) | Configuration file for ESLint | -| `.gitignore` | Git files and folders to ignore | -| `next-env.d.ts` | TypeScript declaration file for Next.js | -| `tsconfig.json` | Configuration file for TypeScript | -| `jsconfig.json` | Configuration file for JavaScript | +| | | +| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | +| **Next.js** | | +| [`next.config.js`](/docs/app/api-reference/config/next-config-js) | Configuration file for Next.js | +| [`package.json`](/docs/app/getting-started/installation#manual-installation) | Project dependencies and scripts | +| [`instrumentation.ts`](/docs/app/guides/instrumentation) | OpenTelemetry and Instrumentation file | +| [`proxy.ts`](/docs/app/api-reference/file-conventions/proxy) | Next.js request proxy | +| [`.env`](/docs/app/guides/environment-variables) | Environment variables (should not be tracked by version control) | +| [`.env.local`](/docs/app/guides/environment-variables) | Local environment variables (should not be tracked by version control) | +| [`.env.production`](/docs/app/guides/environment-variables) | Production environment variables (should not be tracked by version control) | +| [`.env.development`](/docs/app/guides/environment-variables) | Development environment variables (should not be tracked by version control) | +| [`eslint.config.mjs`](/docs/app/api-reference/config/eslint) | Configuration file for ESLint | +| `.gitignore` | Git files and folders to ignore | +| `next-env.d.ts` | TypeScript declaration file for Next.js (should not be tracked by version control) | +| `tsconfig.json` | Configuration file for TypeScript | +| `jsconfig.json` | Configuration file for JavaScript |