rsnext/errors/build-dir-not-writeable.md
Tim Neutkens 483bd3ddda
Rename ZEIT to Vercel (#12075)
* Find/replace

* Update more URLs

* More rename

* Fix remaining examples

* More updates

* Update create-next-app

* Update remaining text

* Update

Co-authored-by: Shu Uesugi <shu@chibicode.com>
2020-04-21 11:47:12 +02:00

1 KiB

Build directory not writeable

Why This Error Occurred

The filesystem does not allow writing to the specified directory. A common cause for this error is starting a custom server in development mode on a production server, for example, Vercel which doesn't allow you to write to the filesystem after your app is built.

Possible Ways to Fix It

When using a custom server with a server file, for example called server.js, make sure you update the scripts key in package.json to:

{
  "scripts": {
    "dev": "node server.js",
    "build": "next build",
    "start": "NODE_ENV=production node server.js"
  }
}

and the custom server starts Next in production mode when NODE_ENV is production

const dev = process.env.NODE_ENV !== 'production'
const app = next({ dev })