Just an explanation that might help: Technically, bundle included twice
happens when an application tries to import two different versions (*.umd.js
is considered a different version too) of a Bryntum component.
For example, in the application, we do:
import { SchedulerPro } from '@bryntum/schedulerpro/schedulerpro.umd.js'
and the wrapper, that also imports SchedulerPro:
import { SchedulerPro } from @bryntum/schedulerpro
Therefore, the first action to handle this error is check all imports in all application files. There is an offending import somewhere almost certainly.
In any case, we need a showcase we can run that produces the error so that we can help you further.