mirror of
https://github.com/owncloud/ocis
synced 2026-04-25 17:25:21 +02:00
487 B
487 B
Bugfix: Fix IDP build on FreeBSD by disabling absolute Babel runtime
The babel-preset-react-app preset defaults to absoluteRuntime: true,
which hardcodes absolute paths to @babel/runtime helpers. These paths
fail to resolve on non-Linux platforms like FreeBSD. Setting
absoluteRuntime: false makes Babel resolve the runtime relative to
the source file, which works across all platforms.
https://github.com/owncloud/ocis/pull/12114 https://github.com/owncloud/ocis/issues/12065