@IanM
I'm trying to extend PrivateDiscussionComposer
. I wonder, if this is exported or not.
My webpack.config.js
contains:
module.exports = require('flarum-webpack-config')({
useExtensions: ['fof-byobu'],
});
and in my extension I try:
import { byobu } from '@fof-byobu';
console.log(byobu)
... which says:
Uncaught TypeError: _fof_byobu__WEBPACK_IMPORTED_MODULE_9__ is undefined
Is there a new way to extend certain parts of Byobu?