├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── app.json ├── components └── logo.js ├── config └── nginx.conf.erb ├── next.config.js ├── package.json └── pages └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars/heroku-nextjs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars/heroku-nextjs/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bin/start-nginx-static 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars/heroku-nextjs/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars/heroku-nextjs/HEAD/app.json -------------------------------------------------------------------------------- /components/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars/heroku-nextjs/HEAD/components/logo.js -------------------------------------------------------------------------------- /config/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars/heroku-nextjs/HEAD/config/nginx.conf.erb -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars/heroku-nextjs/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars/heroku-nextjs/HEAD/package.json -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mars/heroku-nextjs/HEAD/pages/index.js --------------------------------------------------------------------------------