Creating a Blog with Next.js and Markdown - Part 2
This is in continuation to Part 1 What is great about the way we did this (using Next.js) is - we can now export this as a static website. The static website can be deployed anywhere now! Update build script - use next export Notice in package.json, there is a command called build. This is build script. npm run build npm run build will build for production, but there is one more command called next export that will export you site as a static website....