From e192d4645c3e051d027635f409dd81f51efa3801 Mon Sep 17 00:00:00 2001 From: Tobbe Lundberg Date: Fri, 24 Jan 2025 00:27:49 +0100 Subject: [PATCH] docs(start/quickstart): fix typo (#10184) --- contributors.yml | 1 + docs/start/quickstart.md | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/contributors.yml b/contributors.yml index 484dbd535fb..5dd438f6282 100644 --- a/contributors.yml +++ b/contributors.yml @@ -659,6 +659,7 @@ - TimonVS - tjefferson08 - tmcw +- Tobbe - tombiju - tombohub - tombyrer diff --git a/docs/start/quickstart.md b/docs/start/quickstart.md index b3612654c20..894c5055b7a 100644 --- a/docs/start/quickstart.md +++ b/docs/start/quickstart.md @@ -119,12 +119,12 @@ npx remix-serve build/server/index.js You should be able to open up [http://localhost:3000][http-localhost-3000] and see the "hello world" page. -Aside from the unholy amount of code in `node_modules`, our Remix app is just one file: +Aside from the unholy amount of code in `node_modules`, our Remix app is just three files: ``` ├── app/ │ └── root.jsx -└── package.json +├── package.json └── vite.config.js ```