当我使用Vue.js .NET核心项目启动dotnet run时,我会收到以下“失败”消息,但该站点似乎运行良好。有谁知道我为什么会收到这些消息,以及如何排除它呢?
c:\myproj\Web>dotnet run
Using launch settings from c:\myproj\Web\Properties\launchSettings.json...
Hosting environment: Development
Content root path: c:\myproj\Web
Now listening on: http://localhost:60000
Application started. Press Ctrl+C to shut down.
fail: Microsoft.AspNetCore.NodeServices[0]
[hardsource:be1e46f8] Using 230 MB of disk space.
fail: Microsoft.AspNetCore.NodeServices[0]
[hardsource:be1e46f8] Tracking node dependencies with: package-lock.json.
fail: Microsoft.AspNetCore.NodeServices[0]
[hardsource:be1e46f8] Reading from cache be1e46f8...发布于 2018-10-17 15:11:07
看起来,dotnet会将硬源详细消息报告为失败,而不是。我修改了我的HardSource配置,如下所示(在webpack.config.*.js中),消息就消失了。
new HardSourceWebpackPlugin({ info: { mode: 'none', level: 'warn' } }),https://stackoverflow.com/questions/52857861
复制相似问题