...
You can add topics below ahead of time, or add them during the meeting.
2024-11-18
2024-11-04
WordPress plugin for commerce
Speed of change to microfrontends makes it difficult to want to contribute
robots.txt for most MFEs
Caddyfile could add a robots.txt like this to the MFE container, with varying restrictions based on the MFEs within the container:
Code Block # robots.txt {% for app in MFE_APPS %} {% if app['no-crawl'] % } User-agent: * Disallow: /{app} {% edif % } {% endfor %} User-agent: * Disallow: /learning/course/*/progress # Don't crawl learner progress pages
...