Programming Log

March 14, 2025 (4mo ago)

module.exports = { async rewrites() { return [ { source: '/:slug', destination: '/custom-route/:slug', // Internally handled by [slug].js }, ]; }, };

21 March 2025

14 March 2025

13 March 2025

12 March 2025

Clear the default mapbox pop up box

.mapboxgl-popup-content {
  border-radius: 1rem !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.mapboxgl-popup-tip {
  display: none !important;
}