Spaces:
Sleeping
Sleeping
| # ========================================== | |
| # Frontend .dockerignore | |
| # ========================================== | |
| # Environment files (SECURITY - Never include in image) | |
| .env | |
| .env.* | |
| !.env.example | |
| # Node.js | |
| node_modules/ | |
| npm-debug.log* | |
| yarn-debug.log* | |
| yarn-error.log* | |
| pnpm-debug.log* | |
| .pnpm-store/ | |
| # Build outputs (will be built in container) | |
| dist/ | |
| dist-ssr/ | |
| .output/ | |
| .nuxt/ | |
| .next/ | |
| # IDE files | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| .DS_Store | |
| # Testing | |
| coverage/ | |
| .nyc_output/ | |
| tests/ | |
| *.test.js | |
| *.test.ts | |
| *.spec.js | |
| *.spec.ts | |
| # Git | |
| .git/ | |
| .gitignore | |
| .gitattributes | |
| # Documentation (not needed in runtime) | |
| *.md | |
| docs/ | |
| README.md | |
| # CI/CD | |
| .github/ | |
| .gitlab-ci.yml | |
| # Development tools | |
| .eslintrc* | |
| .prettierrc* | |
| tsconfig.json | |
| vite.config.ts | |
| vitest.config.js | |
| postcss.config.js | |
| # Temporary files | |
| *.tmp | |
| *.temp | |
| .cache/ | |
| Thumbs.db | |