Files
cannaiq/cannaiq/.dockerignore
Kelly d120a07ed7 fix(cannaiq): Fix hardcoded localhost URLs in product image paths
- Add .dockerignore to exclude .env.local from Docker builds
- Replace http://localhost:9020/dutchie/ with /api/images/dutchie/ in:
  - StoreDetail.tsx
  - ProductDetail.tsx
  - StoreView.tsx

This fixes production builds connecting to localhost for images.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-05 15:32:27 -07:00

28 lines
409 B
Plaintext

# Ignore local development environment files
.env.local
.env.development
.env.development.local
.env.local.backup
# Ignore node_modules (will be installed fresh in container)
node_modules
# Ignore build output (will be built fresh in container)
dist
# Ignore git and IDE files
.git
.gitignore
.vscode
.idea
*.swp
*.swo
# Ignore documentation
README.md
*.md
# Ignore Docker files
Dockerfile
.dockerignore