Skip to content

Commit 1b1013a

Browse files
update README ahead of UI one-click zero-config install (#50)
1 parent f50efb3 commit 1b1013a

File tree

2 files changed

+70
-30
lines changed

2 files changed

+70
-30
lines changed

README.md

+56-30
Original file line numberDiff line numberDiff line change
@@ -11,49 +11,91 @@
1111
</a>
1212
</p>
1313

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.
1515

1616
## Table of Contents
1717

1818
- [Installation and Configuration](#installation-and-configuration)
19-
- [Custom Netlify Redirects](#custom-netlify-redirects)
2019
- [Custom Netlify Functions](#custom-netlify-functions)
20+
- [Publish Directory](#publish-directory)
21+
- [Custom Netlify Redirects](#custom-netlify-redirects)
2122
- [Caveats](#caveats)
22-
- [Fallbacks for Pages with `getStaticPaths`](#fallbacks-for-pages-with-getstaticpaths)
2323
- [Credits](#credits)
2424
- [Showcase](#showcase)
2525

2626
## Installation and Configuration
2727

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`:
2952

3053
```toml
3154
[build]
3255
command = "npm run build"
33-
functions = "out_functions"
34-
publish = "out_publish"
56+
functions = "my_functions_dir"
3557

3658
[[plugins]]
3759
package = "@netlify/plugin-nextjs"
3860
```
3961

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+
4080
## Custom Netlify Redirects
4181

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.
4383
The precedence of these rules are:
4484

4585
- `_redirects`
4686
- `next-on-netlify` redirects
47-
- `netlify.toml`
4887

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.
5089

51-
## Custom Netlify Functions
90+
## Caveats
5291

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
5593

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.
5799

58100
### Fallbacks for Pages with `getStaticPaths`
59101

@@ -65,21 +107,7 @@ For more on this, see: [Issue #7](https://github.com/netlify/next-on-netlify/iss
65107

66108
## Credits
67109

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).
83111

84112
## Showcase
85113

@@ -90,5 +118,3 @@ The following sites are built with `next-on-netlify`:
90118

91119
![missionbit.org](https://raw.githubusercontent.com/netlify/next-on-netlify/master/assets/showcase-missionbit.png)
92120
[missionbit.org](https://www.missionbit.org/) ([#18](https://github.com/netlify/next-on-netlify/pull/18#issuecomment-643828966))
93-
94-
Are you building something awesome with `next-on-netlify`? 🔥 Let us know and we will feature it here :)

sample/pages/server-side.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
export default function Test() {
2+
return (
3+
<div>
4+
gssp test
5+
</div>
6+
)
7+
}
8+
9+
export function getServerSideProps() {
10+
return {
11+
props: {
12+
}
13+
}
14+
}

0 commit comments

Comments
 (0)