This is the next.js app source code running on https://knox.pro.
desktop.mov
mobile.mov
You can run this locally with:
yarn dev
I've deployed this as a static site, that's why my next config looks like this:
/** @type {import('next').NextConfig} */
const nextConfig = {
...
output: 'export',
images: { unoptimized: true },
...
}
module.exports = nextConfig
You can build with this command:
yarn build
The build ends up being in ./out
, and I've deploy on DigitalOcean app-platform.