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
Copy file name to clipboardexpand all lines: README.md
+56-30
Original file line number
Diff line number
Diff line change
@@ -11,49 +11,91 @@
11
11
</a>
12
12
</p>
13
13
14
-
This build plugin is a utility for enabling server-side rendering in Next.js on Netlify. It wraps your application in a tiny compatibility layer, so that pages can use Netlify Functions to be server-side rendered.
14
+
This build plugin is a utility for supporting Next.js on Netlify. To enable server-side rendering and other framework-specific features in your Next.js application on Netlify, you will need to install this plugin for your app.
15
15
16
16
## Table of Contents
17
17
18
18
-[Installation and Configuration](#installation-and-configuration)
-[Fallbacks for Pages with `getStaticPaths`](#fallbacks-for-pages-with-getstaticpaths)
23
23
-[Credits](#credits)
24
24
-[Showcase](#showcase)
25
25
26
26
## Installation and Configuration
27
27
28
-
Create a `netlify.toml` in the root of your project:
28
+
There are two ways to install the plugin in your Next.js on Netlify site.
29
+
30
+
First:
31
+
32
+
This plugin can be installed and managed from your site's settings on Netlify. Read more about [UI-based installation](https://docs.netlify.com/configure-builds/build-plugins/#ui-installation) in our docs.
33
+
34
+
Second:
35
+
36
+
Create a `netlify.toml` in the root of your project. Your file should include the plugins section below:
37
+
38
+
```toml
39
+
[build]
40
+
command = "npm run build"
41
+
42
+
[[plugins]]
43
+
package = "@netlify/plugin-nextjs"
44
+
```
45
+
46
+
Read more about [file-based plugin installation](https://docs.netlify.com/configure-builds/build-plugins/#file-based-installation) in our docs.
47
+
48
+
## Custom Netlify Functions
49
+
50
+
This plugin creates one Netlify Function for each Next.js page that requires one.
51
+
To use custom Netlify Functions in addition to what the plugin generates, add a path to your functions folder in `netlify.toml`:
29
52
30
53
```toml
31
54
[build]
32
55
command = "npm run build"
33
-
functions = "out_functions"
34
-
publish = "out_publish"
56
+
functions = "my_functions_dir"
35
57
36
58
[[plugins]]
37
59
package = "@netlify/plugin-nextjs"
38
60
```
39
61
62
+
Read more about [Netlify Functions](https://docs.netlify.com/functions/overview/) in our docs.
63
+
64
+
## Publish Directory
65
+
66
+
Similarly, you can customize your publish directory in your `netlify.toml` file:
67
+
68
+
```toml
69
+
[build]
70
+
command = "npm run build"
71
+
functions = "my_functions_dir"
72
+
publish = "my_publish_dir"
73
+
74
+
[[plugins]]
75
+
package = "@netlify/plugin-nextjs"
76
+
```
77
+
78
+
Read more about [Netlify's build settings](https://docs.netlify.com/configure-builds/get-started/#basic-build-settings) in our docs.
79
+
40
80
## Custom Netlify Redirects
41
81
42
-
You can define custom redirects in a `_redirects`and/or in your `netlify.toml`file.
82
+
You can define custom redirects in a `_redirects` file.
43
83
The precedence of these rules are:
44
84
45
85
-`_redirects`
46
86
-`next-on-netlify` redirects
47
-
-`netlify.toml`
48
87
49
-
[Read more about Netlify redirects here](https://docs.netlify.com/routing/redirects/).
88
+
Read more about [Netlify redirects](https://docs.netlify.com/routing/redirects/) in our docs.
50
89
51
-
## Custom Netlify Functions
90
+
## Caveats
52
91
53
-
`next-on-netlify` creates one Netlify Function for each of your
54
-
SSR pages and API endpoints. It is currently not possible to create custom Netlify Functions. Let me know if you have a need for this feature and we can add it.
92
+
### Versions
55
93
56
-
## Caveats
94
+
You can check our `package.json` for supported Next and Node versions. Our support of Next 10 is currently experimental.
95
+
96
+
### CLI
97
+
98
+
This plugin is currently not stable for use with the Netlify CLI. Support for the plugin is in development.
57
99
58
100
### Fallbacks for Pages with `getStaticPaths`
59
101
@@ -65,21 +107,7 @@ For more on this, see: [Issue #7](https://github.com/netlify/next-on-netlify/iss
65
107
66
108
## Credits
67
109
68
-
This package is maintained by [Lindsay Levine](https://github.com/lindsaylevine), [Finn Woelm](https://github.com/FinnWoelm), and [Cassidy Williams](https://github.com/cassidoo).
69
-
70
-
📣 Shoutout to [@mottox2](https://github.com/mottox2) (a pioneer of hosting Next.js on Netlify) and [@danielcondemarin](https://github.com/danielcondemarin) (author of serverless-next.js for AWS). The two were big inspirations for this package.
71
-
72
-
🙌 Big "thank you" to the following people for their contributions, support, and beta testing:
73
-
74
-
-[@spencewood](https://github.com/spencewood)
75
-
-[@alxhghs](https://github.com/alxhghs)
76
-
-[@gamliela](https://github.com/gamliela)
77
-
-[@wei](https://github.com/wei)
78
-
-[@laugharn](https://github.com/laugharn)
79
-
-[@rajington](https://github.com/rajington)
80
-
-[@etrepum](https://github.com/etrepum)
81
-
-[@jonasbuntinx](https://github.com/jonasbuntinx)
82
-
-[@joostmeijles](https://github.com/joostmeijles)
110
+
This package is maintained by [Lindsay Levine](https://github.com/lindsaylevine) and [Cassidy Williams](https://github.com/cassidoo). It extends the project [next-on-netlify](https://github.com/netlify/next-on-netlify), authored originally by [Finn Woelm](https://github.com/finnwoelm).
83
111
84
112
## Showcase
85
113
@@ -90,5 +118,3 @@ The following sites are built with `next-on-netlify`:
0 commit comments