diff --git a/README.md b/README.md index 598750f2045..f72934f925c 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ We are happy you're here! [Remix](https://remix.run) is a full stack web framework that lets you focus on the user interface and work back through web fundamentals to deliver a fast, slick, and resilient user experience that deploys to any Node.js server and even non-Node.js environments at the edge like Cloudflare Workers. -Want to know more? Read the [Technical Explanation of Remix](https://remix.run/docs/discussion/introduction) +Want to know more? Read the [Technical Explanation of Remix](https://remix.run/discussion/introduction) This repository contains the Remix source code. This repo is a work in progress, so we appreciate your patience as we figure things out. @@ -19,7 +19,7 @@ The documentation is automatically generated on each release from the files in ## Contributing -If you're interested in contributing code and/or documentation, please see [our guide to contributing](https://remix.run/docs/guides/contributing). +If you're interested in contributing code and/or documentation, please see [our guide to contributing](https://remix.run/guides/contributing). ## Code of Conduct diff --git a/packages/create-remix/index.ts b/packages/create-remix/index.ts index a46f6ca737c..b8e3f9dd099 100644 --- a/packages/create-remix/index.ts +++ b/packages/create-remix/index.ts @@ -265,7 +265,7 @@ async function copyTemplateToTempDirStep(ctx: Context) { } else { log(""); info("Using basic template", [ - "See https://remix.run/docs/guides/templates for more", + "See https://remix.run/guides/templates for more", ]); } diff --git a/packages/remix-dev/config.ts b/packages/remix-dev/config.ts index 79b05e36efa..1fb6918f653 100644 --- a/packages/remix-dev/config.ts +++ b/packages/remix-dev/config.ts @@ -78,7 +78,7 @@ export interface AppConfig { publicPath?: string; /** - * Options for `remix dev`. See https://remix.run/docs/en/main/other-api/dev-v2#options-1 + * Options for `remix dev`. See https://remix.run/other-api/dev#options-1 */ dev?: Dev; @@ -243,7 +243,7 @@ export interface RemixConfig { publicPath: string; /** - * Options for `remix dev`. See https://remix.run/docs/en/main/other-api/dev-v2#options-1 + * Options for `remix dev`. See https://remix.run/other-api/dev#options-1 */ dev: Dev; diff --git a/templates/remix-javascript/app/entry.client.jsx b/templates/remix-javascript/app/entry.client.jsx index 36f2e51a73f..94d5dc0de0f 100644 --- a/templates/remix-javascript/app/entry.client.jsx +++ b/templates/remix-javascript/app/entry.client.jsx @@ -1,7 +1,7 @@ /** * By default, Remix will handle hydrating your app on the client for you. * You are free to delete this file if you'd like to, but if you ever want it revealed again, you can run `npx remix reveal` ✨ - * For more information, see https://remix.run/docs/en/main/file-conventions/entry.client + * For more information, see https://remix.run/file-conventions/entry.client */ import { RemixBrowser } from "@remix-run/react"; diff --git a/templates/remix-javascript/app/entry.server.jsx b/templates/remix-javascript/app/entry.server.jsx index 684886996f8..fcbefdcd804 100644 --- a/templates/remix-javascript/app/entry.server.jsx +++ b/templates/remix-javascript/app/entry.server.jsx @@ -1,7 +1,7 @@ /** * By default, Remix will handle generating the HTTP Response for you. * You are free to delete this file if you'd like to, but if you ever want it revealed again, you can run `npx remix reveal` ✨ - * For more information, see https://remix.run/docs/en/main/file-conventions/entry.server + * For more information, see https://remix.run/file-conventions/entry.server */ import { PassThrough } from "node:stream";