bootstrap.bundle.min.js 从哪里来 ASP.NET 核心?

Where does bootstrap.bundle.min.js come from in ASP.NET Core?

当我创建一个全新的 ASP.NET 核心 Web 应用程序项目时,以下标记出现在我的 _Layout.cshtml 文件的末尾附近。

<script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>

但是,磁盘上不存在此文件。

有人可以帮助我了解此文件的来源以及我如何查看或更改其内容吗?

Visual Studios file nesting 行为可能会让您相信;
它显示 wwwroot\lib\bootstrap\dist\js\bootstrap.js(下图 1)。

只需展开折叠的箭头即可找到 bootstrap.bundle.min.js 文件(图 2)。