1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/root-static-files
2018-09-20 11:32:16 +02:00
..
pages Add root static files example (#1835) 2017-04-30 07:30:29 -07:00
static Add root static files example (#1835) 2017-04-30 07:30:29 -07:00
package.json Upgrade React for examples with next@latest (#3196) 2017-10-28 09:26:00 +02:00
README.md Fix Example Deploy Links (#5216) 2018-09-20 11:32:16 +02:00
server.js Upgrade standard.js (#4064) 2018-03-27 20:11:03 +02:00

Deploy to now

Root static files example

How to use

Using create-next-app

Execute create-next-app with Yarn or npx to bootstrap the example:

npx create-next-app --example root-static-files root-static-files-app
# or
yarn create next-app --example root-static-files root-static-files-app

Download manually

Download the example:

curl https://codeload.github.com/zeit/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/custom-server
cd custom-server

Install it and run:

npm install
npm run dev
# or
yarn
yarn dev

Deploy it to the cloud with now (download)

now

The idea behind the example

This example demonstrates how to serve files such as /robots.txt and /sitemap.xml from the root.