This is a Next.js project bootstrapped with create-next-app.
Getting Started
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.tsx. The page auto-updates as you edit the file.
This project uses next/font to automatically optimize and load Geist, a new font family for Vercel.
Deploying (self-hosted)
This site runs on a server behind nginx + pm2. To ship updates:
git pull
npm ci # NOT npm install — see warning below
rm -rf .next # drop old build so stale chunks can't linger
npm run build # must finish with "✓ Compiled successfully" before restarting
pm2 restart <app-name>
Warning
Always use
npm ci, nevernpm install, when rebuilding on the server.npm installcan resolve newer in-range versions (deps use^ranges on a Next.js canary) and rewritepackage-lock.json, producing a dependency tree that doesn't match the build manifest. The result looks like a caching bug — e.g. the page "loads but no text appears" or chunks 404 — but it's an install mismatch.npm ciinstalls the exact locked versions for a reproducible build.
Verify after deploy: curl -sI https://daniel.dou.bet/ | grep -i etag, then load
the site in a private window to bypass any local cache.
Learn More
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
Deploy on Vercel
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.