From 9e8266a7850cd2bc7dba3060465c5d0fc15ff07a Mon Sep 17 00:00:00 2001 From: Paarth Madan Date: Fri, 23 Aug 2024 10:44:49 -0400 Subject: [PATCH] docs: Enumerate all possible extensions for note (#67958) Co-authored-by: Lee Robinson --- .../01-routing/01-defining-routes.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02-app/01-building-your-application/01-routing/01-defining-routes.mdx b/docs/02-app/01-building-your-application/01-routing/01-defining-routes.mdx index 65ec00e329db1..01bb4bc688ea8 100644 --- a/docs/02-app/01-building-your-application/01-routing/01-defining-routes.mdx +++ b/docs/02-app/01-building-your-application/01-routing/01-defining-routes.mdx @@ -37,7 +37,7 @@ A special [`page.js` file](/docs/app/building-your-application/routing/pages) is In this example, the `/dashboard/analytics` URL path is _not_ publicly accessible because it does not have a corresponding `page.js` file. This folder could be used to store components, stylesheets, images, or other colocated files. -> **Good to know**: `.js`, `.jsx`, or `.tsx` file extensions can be used for special files. +> **Good to know**: `.js`, `.jsx`, `.ts`, or `.tsx` file extensions can be used for special files. ## Creating UI