You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -40,7 +41,7 @@ Read more about [UI-based plugin installation](https://docs.netlify.com/configur
40
41
```toml
41
42
[build]
42
43
command = "npm run build"
43
-
44
+
44
45
[[plugins]]
45
46
package = "@netlify/plugin-nextjs"
46
47
```
@@ -51,14 +52,29 @@ Read more about [UI-based plugin installation](https://docs.netlify.com/configur
51
52
npm install -D @netlify/plugin-nextjs
52
53
```
53
54
54
-
or
55
+
or
55
56
56
57
```
57
58
yarn add -D @netlify/plugin-nextjs
58
59
```
59
60
60
61
Read more about [file-based plugin installation](https://docs.netlify.com/configure-builds/build-plugins/#file-based-installation) in our docs.
61
62
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
+
62
78
## Custom Netlify Functions
63
79
64
80
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/)
107
123
108
124
You can check our `package.json` for supported Next and Node versions. Our support of Next 10 is currently experimental.
109
125
110
-
### CLI
111
-
112
-
This plugin is currently not stable for use with the Netlify CLI. Support for the plugin is in development.
113
-
114
126
### Fallbacks for Pages with `getStaticPaths`
115
127
116
128
[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