Netlify CMS & Next.js Series - Deploy
We're finally ready to deploy our site to Netlify!
Netlify.toml
Make a file at the top level of your directory called netlify.toml, and fill it with:
[build]
command = "npm run build && npm run export"
publish = "out"
The command here is referrin...
blog.justinramel.com2 min read