Ah, good ol' rebuilding my static site using a new technology. This time, NextJS. Thankfully, coming from Gatsby, many of the files could just be copied over with a few modifications.
You can find my landing page deployed here: https://flyme2bluemoon.github.io
Just for fun, I have also set up a status page using Uptime Robot to see when Github Pages is down. LOL
To run a development server on http://localhost:3000.
Turbopack is being used although it is still in beta.
npm run dev
Although the production side is hosted on Github Pages and is built automatically, you can test the production build which will output to out/
. Any trusty HTTP server should be able to work to test this.
npm run build
npx serve@latest out
A shortcut to compile a test production build and serve it using Vercel's static file server. Use this if you want to benchmark with Chrome's Lighthouse.
npm run serve
If you find any issues, please file a Github Issue in this repository.