You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Freshli.Web project was generated by running dotnet new mvc. The way that template handles browser-based assets is not ideal for these reasons:
Dependencies are copied directly into the repository and are not tracked by a dependency manager
The bundling support built into ASP.NET Core is limited to minification. More advanced support such as shims and transpiling from one JS syntax to another are not supported
So instead, let's switch to using tools from the node ecosystem to solve this problem. We'll start with using yarn for dependencies and perhaps use webpack for bundling and other features.
The text was updated successfully, but these errors were encountered:
The
Freshli.Web
project was generated by runningdotnet new mvc
. The way that template handles browser-based assets is not ideal for these reasons:So instead, let's switch to using tools from the
node
ecosystem to solve this problem. We'll start with usingyarn
for dependencies and perhaps usewebpack
for bundling and other features.The text was updated successfully, but these errors were encountered: