Files
netbird-docs/.gitignore
Jack Carter d1936d99ec fix: replace invalid <p> wrapping Button with <div> (#768)
* fix: replace invalid <p> wrapping Button with <div>

The Button component renders a <div> in its primary variant. HTML
disallows block elements inside <p>, so browsers auto-close the <p>
during parsing and React 19 reports a hydration mismatch. The
float="center" attribute was non-functional, so rendering is unchanged.

* chore: gitignore .playwright-mcp run artifacts
2026-05-27 13:51:03 -07:00

47 lines
825 B
Plaintext

# Dependencies
/node_modules
# Production
/build
# Generated files
.docusaurus
.cache-loader
# Misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.idea
package-lock.json
/.next/
/yarn.lock
/generator/openapi/
/generator/openapi.yml
/generator/expandOpenAPIRef
/generator/tsconfig.tsbuildinfo
# LLM documentation (generated)
/public/llms/
/public/llms.txt
# Sitemap (generated by scripts/generate-sitemap.mjs)
/public/sitemap.xml
# Edit on GitHub index routes (generated by scripts/generate-github-routes.mjs)
/src/lib/edit-on-github-routes.js
# Last updated dates per route (generated by scripts/generate-last-updated.mjs)
/src/lib/last-updated-routes.mjs
# Playwright MCP run artifacts (snapshots, console logs)
/.playwright-mcp/