- Replace all Google Map components with Leaflet OSM alternatives - Add osm-map.tsx with dynamic Leaflet import (SSR-safe) - Use CDN for Leaflet CSS to avoid Next.js CSS import issues - Update types.tsx to remove google.maps dependencies - Replace Google Places autocomplete with Nominatim OSM - Replace Google Geocoding with Nominatim OSM - Add GPS coordinates for all 15 Martinique charging station locations - Update next.config.mjs: ignoreBuildErrors for TypeScript loops - Update package.json: use 'next build' instead of 'refine build' - Add .dockerignore for faster Docker builds - Fix map centering on Martinique (default: 14.6415, -61.0242)
30 lines
349 B
Plaintext
30 lines
349 B
Plaintext
# Docker ignore for CitrineOS monorepo
|
|
node_modules
|
|
.next
|
|
.git
|
|
.gitignore
|
|
.dockerignore
|
|
Dockerfile
|
|
docker-compose*.yml
|
|
*.md
|
|
.env*
|
|
!.env.test
|
|
!.env.local
|
|
.pnpm-store
|
|
.turbo
|
|
dist
|
|
coverage
|
|
.nyc_output
|
|
*.log
|
|
.DS_Store
|
|
Thumbs.db
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
apps/*/node_modules
|
|
packages/*/node_modules
|
|
tools/*/node_modules
|
|
!apps/operator-ui/node_modules
|