- Modified build script in package.json to include minification. - Removed unused dev server dependency from vite.config.ts. - Added .dockerignore to exclude unnecessary files from Docker context. - Created Dockerfile for multi-stage build with Bun for production deployment.
67 lines
653 B
Plaintext
67 lines
653 B
Plaintext
# Dependencies
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# Build outputs
|
|
dist
|
|
build
|
|
.rsbuild
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# IDE and editor files
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Docker
|
|
Dockerfile
|
|
.dockerignore
|
|
docker-compose.yml
|
|
|
|
# Documentation
|
|
README.md
|
|
*.md
|
|
|
|
# Test files
|
|
coverage
|
|
.coverage
|
|
.nyc_output
|
|
test
|
|
tests
|
|
__tests__
|
|
*.test.js
|
|
*.test.ts
|
|
*.spec.js
|
|
*.spec.ts
|
|
|
|
# Linting
|
|
.eslintrc*
|
|
.prettierrc*
|
|
.stylelintrc*
|
|
|
|
# Other
|
|
.husky |