Skip to content

Create package.json and badges #4

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

Merged
merged 1 commit into from
Oct 27, 2020
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
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

# Next on Netlify Build Plugin

<p align="center">
<a aria-label="npm version" href="https://www.npmjs.com/package/netlify-plugin-nextjs">
<img alt="" src="https://img.shields.io/npm/v/netlify-plugin-nextjs">
</a>
<a aria-label="MIT License" href="https://img.shields.io/npm/l/netlify-plugin-nextjs">
<img alt="" src="https://img.shields.io/npm/l/netlify-plugin-nextjs">
</a>
</p>

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.

**TL;DR: You can enable SSR in your Next.js applications with 3 simple steps, listed [here](#setup)!**
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"name": "netlify-plugin-nextjs",
"version": "1.0.0",
"version": "0.1.0",
"description": "run Nextj.s seamlessly on netlify",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/netlify/netlify-plugin-nextjs"
"url": "git+https://github.com/netlify/netlify-plugin-nextjs.git"
},
"keywords": [
"nextjs",
"netlify",
"next"
],
"author": "lindsaylevine",
"license": "ISC",
"license": "MIT",
"bugs": {
"url": "https://github.com/netlify/netlify-plugin-nextjs/issues"
},
Expand Down