This is a Next.js project bootstrapped with create-next-app.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun devOpen http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.js. 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.
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!
Yes — you can auto-add unknown words to your cspell-yoga.txt. There are two solid ways:
In VS Code, when a word is underlined by cSpell:
- Right-click the word
- Choose “Add Word to Workspace Dictionary” (or similar)
This will write to your workspace dictionary (usually cspell.json / settings.json).
If you want it to go specifically into cspell-yoga.txt, use Option B.
Install cspell locally in your repo:
npm i -D cspellThen run (examples):
npx cspell "content/**/*.md" "app/**/*.mdx" --words-only --unique > cspell-new-words.txtNow review cspell-new-words.txt, then append the approved ones into cspell-yoga.txt.
npx cspell "content/**/*.md" "app/**/*.mdx" --words-only --unique >> cspell-yoga.txtThen you should sort + dedupe once in a while:
node -e "const fs=require('fs'); const p='cspell-yoga.txt'; const a=fs.readFileSync(p,'utf8').split(/\r?\n/).filter(Boolean); const u=[...new Set(a)].sort((x,y)=>x.localeCompare(y)); fs.writeFileSync(p,u.join('\n')+'\n');"- Auto-add everything blindly. You’ll accidentally whitelist real typos (bad long-term).
If you tell me your repo layout (where your markdown lives: content/, app/, pages/, etc.), I’ll give you the exact 2–3 commands tailored to your structure.
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.