mirror of
https://github.com/netbirdio/docs.git
synced 2026-08-24 16:51:26 +02:00
* 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
47 lines
825 B
Plaintext
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/
|