Skip to content

Commit 2a2a8d7

Browse files
committed
upgrade NoN to 2.8.1 and explain CLI usage workflow in README
1 parent 78a0986 commit 2a2a8d7

File tree

3 files changed

+596
-46
lines changed

3 files changed

+596
-46
lines changed

README.md

+18-6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ This build plugin is a utility for supporting Next.js on Netlify. To enable serv
1616
## Table of Contents
1717

1818
- [Installation and Configuration](#installation-and-configuration)
19+
- [CLI Usage](#cli-usage)
1920
- [Custom Netlify Functions](#custom-netlify-functions)
2021
- [Publish Directory](#publish-directory)
2122
- [Custom Netlify Redirects](#custom-netlify-redirects)
@@ -40,7 +41,7 @@ Read more about [UI-based plugin installation](https://docs.netlify.com/configur
4041
```toml
4142
[build]
4243
command = "npm run build"
43-
44+
4445
[[plugins]]
4546
package = "@netlify/plugin-nextjs"
4647
```
@@ -51,14 +52,29 @@ Read more about [UI-based plugin installation](https://docs.netlify.com/configur
5152
npm install -D @netlify/plugin-nextjs
5253
```
5354

54-
or
55+
or
5556

5657
```
5758
yarn add -D @netlify/plugin-nextjs
5859
```
5960

6061
Read more about [file-based plugin installation](https://docs.netlify.com/configure-builds/build-plugins/#file-based-installation) in our docs.
6162

63+
## CLI Usage
64+
65+
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:
66+
67+
1. Make sure all your project's files are committed before running a build with the CLI
68+
2. Run any number of builds and deploys freely (i.e. `netlify build`, `netlify deploy --build`, `netlify deploy --prod`)
69+
3. Run `git stash --include-unstaged` to easily ignore plugin-generated files
70+
71+
Plugin-generated files will output into either (a) the default functions and publish directories (`netlify-automatic-functions` and `.`, respectively) or (b) whichever custom functions and publish directories you configure. See below for custom directory configuration. It's important to note that, in both cases (a) and (b), the CLI may mix your project's source code and plugin-generated files; this is why we recommend committing all project source files before running CLI builds.
72+
73+
**Debugging CLI builds:**
74+
- If you're seeing a `{FILE_NAME} already exists` error running a CLI build, this may be because your `node_modules` got purged between builds or because of lingering unstashed files from outdated builds. To resolve, you need to manually remove any plugin-generated files from your project directory.
75+
76+
We're looking to improve the CLI experience to avoid this manual cleanup and git management! Feel free to open an issue to report feedback on the CLI experience.
77+
6278
## Custom Netlify Functions
6379

6480
This plugin creates one Netlify Function for each Next.js page that requires one.
@@ -107,10 +123,6 @@ Read more about [Netlify redirects](https://docs.netlify.com/routing/redirects/)
107123

108124
You can check our `package.json` for supported Next and Node versions. Our support of Next 10 is currently experimental.
109125

110-
### CLI
111-
112-
This plugin is currently not stable for use with the Netlify CLI. Support for the plugin is in development.
113-
114126
### Fallbacks for Pages with `getStaticPaths`
115127

116128
[Fallback pages](https://nextjs.org/docs/basic-features/data-fetching#fallback-true) behave differently with this plugin than they do with Next.js. On Next.js, when navigating to a path that is not defined in `getStaticPaths`, it first displays the fallback page. Next.js then generates the HTML in the background and caches it for future requests.

0 commit comments

Comments
 (0)