Currently I can't run ngx-build-plus with the new build system @angular-devkit/build-angular:application for Angular 17.
When I write in angular.js:
....
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:application",
"options": {
...
"serve": {
"builder": "ngx-build-plus:dev-server",
"options": {
...
I get an error:
"An unhandled exception occurred: The application and browser-esbuild builders do not support Webpack transforms."
Can you help me?
As far as I understand, this project was developed to allow webpack extension. I'm not sure there is any intent to do it again for the new build system.
Currently I can't run ngx-build-plus with the new build system @angular-devkit/build-angular:application for Angular 17. When I write in angular.js: .... "architect": { "build": { "builder": "@angular-devkit/build-angular:application", "options": { ... "serve": { "builder": "ngx-build-plus:dev-server", "options": { ... I get an error: "An unhandled exception occurred: The
application
andbrowser-esbuild
builders do not support Webpack transforms." Can you help me?