In this case I want use grapesjs-custom-code plugin 2 times with different options. Is there such a possibility or should I create a new plugin?
plugins: [
'grapesjs-tabs',
'grapesjs-custom-code'
],
pluginsOpts: {
'grapesjs-custom-code': {
blockCustomCode: {
label: 'Courses',
category: 'Extra',
content: {!! json_encode($courses_content, JSON_HEX_TAG) !!}
},
},
'grapesjs-tabs': {
tabsBlock: {
category: 'Extra'
}
},
}