mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
692 B
692 B
Contributing to Next.js
Our Commitment to Open Source can be found here
- Fork this repository to your own GitHub account and then clone it to your local device.
- Install the dependencies:
npm install
- Run
npm link
to link the local repo to NPM - Run
npm run build
to build and watch for code changes - Then npm link this repo inside any example app with
npm link next
- Then you can run your example app with the local version of Next.js (You may need to re-run the example app as you change server side code in the Next.js repository)