Frontmatter
| number | 3394 |
| title | Minimum Browser Requirements? |
| author | HLeithner |
| category | Q&A |
| createdAt | Aug 18, 2022, 6:00 PM |
| updatedAt | Aug 19, 2022, 5:34 PM |
| closed | Open |
| closedAt | |
| routingDispositionSchemaVersion | discussion-routing-disposition.v1 |
| routingDisposition | undetermined |
| routingDispositionReason | untrusted-or-unclassified-root-author |
| routingDispositionEvidence | [] |
| contentTrust | |
| projected | |
| quarantined | 0 |
| signals | [] |
Minimum Browser Requirements?
Q&AOpen

HLeithneropened on Aug 18, 2022, 6:00 PM
i wonder what the minimum browser versions of neo.mjs are? Unfortunately, I have not found anything about this in the documentation or in repo.

tobiucommented on Aug 19, 2022, 10:38 AM
Hi Harald,
the browser supports looks pretty good at this point. neo is using 3 different modes:
- development => no transpilations or builds, just running the JS code as it is
- dist/development => webpack based build using source maps (you call this one the dev mode in e.g. react or angular)
- dist/production => minified webpack based build => this is the version you deploy
| Environment | Chromium | Firefox | Safari |
|---|---|---|---|
| development | :white_check_mark: | :white_check_mark: | |
| dist/development | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| dist/production | :white_check_mark: | :white_check_mark: | :white_check_mark: |
shared workers (Apps which run inside multiple browser windows, e.g. multi screen)
| Environment | Chromium | Firefox | Safari |
|---|---|---|---|
| development | :white_check_mark: | :white_check_mark: * | |
| dist/development | :white_check_mark: | :white_check_mark: | :white_check_mark: * |
| dist/production | :white_check_mark: | :white_check_mark: | :white_check_mark: * |
Best regards, Tobias