diff --git a/example/app.js b/example/app.js index 42e1d79..45fe488 100644 --- a/example/app.js +++ b/example/app.js @@ -26,6 +26,8 @@ import exampleXML from './newDiagram.bpmn'; import EMAIL_TEMPLATES from './.camunda/element-templates/sendgrid-connector.json'; import REST_TEMPLATES from './.camunda/element-templates/http-json-connector.json'; +import './style.css'; + const TEMPLATES = [ ...EMAIL_TEMPLATES, ...REST_TEMPLATES ]; const url = new URL(window.location.href); diff --git a/example/index.html b/example/index.html index bfee7af..d09b415 100644 --- a/example/index.html +++ b/example/index.html @@ -9,8 +9,6 @@ - - diff --git a/webpack.config.js b/webpack.config.js index 509a796..83f5097 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -26,7 +26,7 @@ module.exports = { plugins: [ new CopyPlugin({ patterns: [ - { from: '*.{html,css}', context: 'example', to: '.' }, + { from: '*.html', context: 'example', to: '.' }, { from: 'bpmn-js/dist/assets/**/*', context: 'node_modules', to: './vendor' }, { from: 'bpmn-js-properties-panel/dist/assets/**/*', context: 'node_modules', to: './vendor' }, { from: '@ibm/plex/{css/ibm-plex.min.css,IBM-Plex-Sans/fonts/{complete,split}/woff2/**}', context: 'node_modules', to: './vendor' }