You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently if you want to import only getSchemaVariables it will bundle UI deps like Preact into your static files. This is happening because we don't have an specific export for getSchemaVariables and because we store each component config together with JSX
To avoid the UI deps we need to split the config from the JSX
Why should we do it?
To allow consumer having smaller bundles in their apps/libs
The text was updated successfully, but these errors were encountered:
What should we do?
Currently if you want to import only
getSchemaVariables
it will bundle UI deps like Preact into your static files. This is happening because we don't have an specific export forgetSchemaVariables
and because we store each component config together with JSXTo avoid the UI deps we need to split the config from the JSX
Why should we do it?
To allow consumer having smaller bundles in their apps/libs
The text was updated successfully, but these errors were encountered: