Skip to content

Commit

Permalink
chore: fix docs links (#7801)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelDeBoey authored Oct 30, 2023
1 parent 2554530 commit 1039f98
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion packages/create-remix/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]);
}

Expand Down
4 changes: 2 additions & 2 deletions packages/remix-dev/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion templates/remix-javascript/app/entry.client.jsx
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
2 changes: 1 addition & 1 deletion templates/remix-javascript/app/entry.server.jsx
Original file line number Diff line number Diff line change
@@ -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";
Expand Down

0 comments on commit 1039f98

Please sign in to comment.