2026-07-23 16:13:06 -05:00
2026-06-25 13:48:23 -05:00
2026-07-23 15:32:50 -05:00
2026-07-23 16:00:19 -05:00
2026-07-23 16:13:06 -05:00
2026-07-23 15:32:50 -05:00
2026-07-23 15:32:50 -05:00

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, never npm install, when rebuilding on the server. npm install can resolve newer in-range versions (deps use ^ ranges on a Next.js canary) and rewrite package-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 ci installs 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:

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.

S
Description
My personal website
Readme
4.1 MiB
Languages
TypeScript 96.4%
CSS 2.4%
Dockerfile 0.8%
JavaScript 0.4%