Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix docs links #7801

Merged
merged 1 commit into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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