Closed GoshaFighten closed 7 years ago
cc @SteveSandersonMS
@GoshaFighten I see you found the fix as per your post at https://github.com/DevExpress/devextreme-angular/issues/534
@Eilon This is the same issue as https://github.com/aspnet/JavaScriptServices/issues/1168, which is the one we considered including a fix for at the last minute before the 2.0 SDK shipped. It's resolved in our dev
branch already so will be fixed in the next SDK.
I installed .NET Core 2.0.3
and I can confirm that now my project is built with no errors. Thank you, @SteveSandersonMS !
This issue relates to the one. I've created an Angular application using .NET Core 2.0. The issue is reproducible regardless if I use Visual Studio 2017 15.3 or
dotnet new angular
. Everything works fine in the Development mode. But, once I publish my application with the DevExtreme Angular package usingdotnet publish -c Release
, I'm getting the following error:I added
to the
package.json
file. Then, I added DevExtreme CSS files to thewebpack.config.vendor.js
asIf instead of the following line in the webpack.config.js file
I use
or
everything works fine. A similar configuration in a project created using Angular CLI works fine as well.
The attached
NGCore
project illustrates the issue andtest-app
created with Angular CLI illustrates that this works in a standard Angular CLI project after I callng eject
.What can be the problem here? Is it in DevExtreme modules or in your webpack configuration? test-app.zip NGCore.zip