I would like to access the Trix
object in my Angular app to make some modifications to the config object.
I tried
import { Trix } from '../../../../node_modules/trix/';
import * as Trix from '../../../../node_modules/trix/';
import { Trix } from '../../../../node_modules/trix/dist/trix.js';
import * as Trix from '../../../../node_modules/trix/dist/trix.js';
and every possible variation, but to no avail.
Any ideas?