danobri
danobri
Related to this - the documentation on the -ylimit parameter is misleading / confusing: > -y, --limity (Default: -1) Limits the chunk rendering in the y dimension (inclusive). For y...
Just ran into this error for the first time today after tearing down and recreating a stack we have been using for load testing. Only happens on one of the...
Any updates on this? I got tripped up by the same issue. For anyone interested, to avoid removing ChangeDetectionStrategy.OnPush, wiring up the onSelectionChange event seems to force change detection. ```...
I am setting the RootPath to the Angular dist folder: ```c# services.AddSpaStaticFiles(configuration => { configuration.RootPath = "ClientApp/dist"; }); ``` And here is what's in my .csproj file: ```xml netcoreapp2.0 true...
Sorry - not sure if you saw my edit, but I was in fact setting the RootPath correctly, I was just looking in the wrong place. :) I will try...
Thanks - I am using a proxy: ```c# spa.UseProxyToSpaDevelopmentServer("https://localhost:4200"); ``` So sounds like I probably don't need the SourcePath setting. That said - are you saying the SourcePath setting is...
I think maybe you aren't seeing the edits I made to my original response. I am setting the RootPath as suggested. (Maybe try refreshing the this Github page to ensure...
Not much... Will of course remove the SourcePath setting since it's not needed, but this is what is currently in production: ```c# app.UseSpa(spa => { spa.Options.SourcePath = "ClientApp"; if (env.IsDevelopment())...
Index.html is present in clientapp/dist, otherwise the application wouldn't function at all - that is what is confusing about the error message. The error is being logged in a production...
Removing the node_modules folder and republishing did not solve the issue - still seeing quite a few of these errors logged on the production server. Any idea why that would...