So, I created a very basic project with the following lines
dotnet new -i aurelia-dotnet-templates
dotnet new aurelia -ht http2 -c sass -e none
I opened the solution in VS2017 and ran it using IIS Express. The page loads.
However, if I open dev tools as the page is loading, the Network information is going nuts with tons of websocket requests. There is nothing in app code that makes any kind of POST request and yet there are tons of POST requests being made in the Network area.
This activity goes on long after the page has loaded. In the end, the status bar indicates that 3.84MB of 3.88MB was transferred -- interesting since the entire dist folder is only 1MB. It also states there were 192 requests made -- my dist folder only has 22 files in it and the largest file is 107KB.
I'm very curious where all this extra activity and data is coming from.
So, I created a very basic project with the following lines
I opened the solution in VS2017 and ran it using IIS Express. The page loads.
However, if I open dev tools as the page is loading, the Network information is going nuts with tons of websocket requests. There is nothing in app code that makes any kind of POST request and yet there are tons of POST requests being made in the Network area.
This activity goes on long after the page has loaded. In the end, the status bar indicates that 3.84MB of 3.88MB was transferred -- interesting since the entire dist folder is only 1MB. It also states there were 192 requests made -- my dist folder only has 22 files in it and the largest file is 107KB.
I'm very curious where all this extra activity and data is coming from.