- 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>
28 lines
409 B
Plaintext
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
|