With the latest Vaadin Version 14.1.17 I have following problem in the brow

With the latest Vaadin Version 14.1.17 I have following problem in the browser with the plgin 1.3-Beta


Webpack Error
Webpack build failed with errors:
ERROR in ../node_modules/@vaadin/flow-frontend/@granite-elements/ace-widget/ace-widget.js
ERROR in ../node_modules/@vaadin/flow-frontend/@granite-elements/ace-widget/ace-widget.js
ERROR in ../node_modules/@vaadin/flow-frontend/@granite-elements/ace-widget/ace-widget.js
ERROR in ../node_modules/@vaadin/flow-frontend/@granite-elements/ace-widget/ace-widget.js
ERROR in ../node_modules/@vaadin/flow-frontend/@granite-elements/ace-widget/ace-widget.js
ERROR in ../node_modules/@vaadin/flow-frontend/@granite-elements/ace-widget/ace-widget.js
Uncaught Error: Cannot find module 'ace-builds/src-noconflict/ace.js?babel-target=es6'
    at webpackMissingModule (ace-widget.js?8433:1)
    at eval (ace-widget.js?8433:1)
    at Module.../node_modules/@vaadin/flow-frontend/@granite-elements/ace-widget/ace-widget.js?babel-target=es6 (vaadin-bundle-2da2954341ebff292520.cache.js:755)
    at __webpack_require__ (vaadin-bundle-2da2954341ebff292520.cache.js:20)
    at eval (generated-flow-imports.js?b518:1)
    at Module.../target/frontend/generated-flow-imports.js?babel-target=es6 (vaadin-bundle-2da2954341ebff292520.cache.js:5706)
    at __webpack_require__ (vaadin-bundle-2da2954341ebff292520.cache.js:20)
    at vaadin-bundle-2da2954341ebff292520.cache.js:84
    at vaadin-bundle-2da2954341ebff292520.cache.js:87

Hi, have you found any solution?

Hi Sebastian,
I have found a workaround for this. Open this project on github and download ace-builds folder that is within the META-INF folder. Copy it to .node-modules folder within your project folder. It will work. This could be clue for Sergio to fix this.

Edit:
I added this annotation above my MainLayout class and it did the trick. Possibly it could be added directly to the plugin.

@NpmPackage(value = “ace-builds”, version = “1.4.8”)

Best J