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

docs: adds context for docs #398

Merged
merged 2 commits into from
Jun 8, 2021
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
2 changes: 1 addition & 1 deletion docs/caveats.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

### Versions

You can check our `package.json` for supported Node versions.
You can check the Essential Next.js plugin's `package.json` for supported Node versions.

For breaking Next.js releases, all Next.js versions before the breaking release will be locked to the last working plugin version:

Expand Down
2 changes: 1 addition & 1 deletion docs/cli-usage.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## CLI Usage

If you'd like to build and deploy your project using the [Netlify CLI](https://docs.netlify.com/cli/get-started/), we recommend this workflow to manage git tracking plugin-generated files:
If you'd like to build and deploy your project using the [Netlify CLI](https://docs.netlify.com/cli/get-started/), we recommend this workflow to manage git tracking for files generated by the Essential Next.js plugin:

1. Make sure all your project's files are committed before running a build with the CLI
2. Run any number of builds and deploys freely (i.e. `netlify build`, `netlify deploy --build`, `netlify deploy --prod`)
Expand Down
2 changes: 1 addition & 1 deletion docs/custom-functions.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Custom Netlify Functions

This plugin creates one Netlify Function for each Next.js page that requires one.
This Essential Next.js plugin creates one Netlify Function for each Next.js page that requires one.
To use custom Netlify Functions in addition to what the plugin generates, add a path to your functions folder in `netlify.toml`:

```toml
Expand Down
5 changes: 3 additions & 2 deletions docs/custom-redirects.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
## Custom Netlify Redirects

You can define custom redirects in a `_redirects` file.
You can define custom redirects in a `_redirects` file for apps using the Essential Next.js plugin.

The precedence of these rules are:

- `_redirects`
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just checking on the line below whether this should still read "next-on-netlify redirects" or whether it needs to be updated.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oooo yes you could update the line below to " Essential Next.js redirects " 💡

- `next-on-netlify` redirects
- `Essential Next.js` redirects
- `netlify.toml` redirects

Read more about [Netlify redirects](https://docs.netlify.com/routing/redirects/) in our docs.
2 changes: 1 addition & 1 deletion docs/faq.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## FAQ

**Q: What can I do if my builds fail suddenly from a broken plugin release or plugin dependency?**
**Q: What can I do if my builds fail suddenly from a broken Essential Next.js plugin release or plugin dependency?**

A: Check out the plugin's [releases](https://github.com/netlify/netlify-plugin-nextjs/releases). You can manually install `npm install --save @netlify/[email protected]` at the last working version.
Once a new working release is out, you can uninstall the plugin at this locked version (`npm uninstall --save @netlify/plugin-nextjs`), which will re-enable Netlify's build system to use the latest plugin version by default.
2 changes: 1 addition & 1 deletion docs/image-handling.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Image Handling

The plugin includes a function to generate images for `next/image`. The images are resized on the fly, so the first request will have a short delay. However because the function uses [On-Demand Builders](https://docs.netlify.com/configure-builds/on-demand-builders/), any subsequent requests for that image are served from the edge cache and are super-fast.
The Essential Next.js plugin includes a function to generate images for `next/image`. The images are resized on the fly, so the first request will have a short delay. However because the function uses [On-Demand Builders](https://docs.netlify.com/configure-builds/on-demand-builders/), any subsequent requests for that image are served from the edge cache and are super-fast.

By default, images are returned in the same format as the source image if they are in JPEG, PNG, WebP or AVIF format. If you are only targeting modern browsers and want to live life on the edge, you can [set the environment variable](https://docs.netlify.com/configure-builds/environment-variables/) `FORCE_WEBP_OUTPUT` to `"true"`, and it will return all images in WebP format. This will often lead to significant improvements in file size. However you should not use this if you need to support older browsers, as `next/image` does not support picture tag source fallback and images will appear broken. Check [browser support](https://caniuse.com/webp) to see if you are happy to do this.

Expand Down
2 changes: 1 addition & 1 deletion docs/local-files-in-runtime.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A common requirement for Next.js projects is to require local files in Next.js pages (see [markdown issue](https://github.com/netlify/netlify-plugin-nextjs/issues/153) and [i18next issue](https://github.com/netlify/netlify-plugin-nextjs/issues/223) as examples).

In this case, you can configure your netlify.toml to make sure these files are included in the function runtime environment. This is necessary for pages that use fallback: true, SSR, preview mode, etc. For example:
When using the Essential Next.js plugin, you can configure your `netlify.toml` to make sure these files are included in the function runtime environment. This is necessary for pages that use fallback: true, SSR, preview mode, etc. For example:

```toml
[build]
Expand Down