aurelia-ui-framework
aurelia-ui-framework copied to clipboard
TypeError: Cannot read property 'attrToRemove' of undefined at ViewCompiler._compileElement
When I applied the webpack config I was getting this error about:
TypeError: Cannot read property 'attrToRemove' of undefined at ViewCompiler._compileElement (webpack-internal:///./node_modules/aurelia-templating/dist/native-modules/aurelia-templating.js:3156:26)
On debugging the code it was failing when trying to work with virtual-repeat.for
.
To fix I had to apply .plugin(PLATFORM.moduleName('aurelia-ui-virtualization')); //<-- add this
for it to work.