我的目标只是使用命令行自动将脚本和样式添加到angular.json中,例如,如果要使用以下命令在我的angular项目中安装bootstrap。
npm install bootstrap
我必须手动转到angular.json并添加bootstrap.min.css和bootstrap.min.js。
"styles": [
"src/styles.css",
"node_modules/bootstrap/dist/css/bootstrap.min.css",
],
"scripts": [
"node_modules/jquery/dist/jquery.min.js",
"node_modules/popper.js/dist/umd/popper.min.js",
"node_modules/bootstrap/dist/js/bootstrap.min.js",
]
是否可以通过命令来执行此操作?之所以需要它是因为我正在使用我的自定义库并安装了其依赖项。由于自定义库没有任何angular.json,因此已安装了自定义库,但无法找到添加脚本和样式的方法。>
答案 0 :(得分:0)
我所做的是在 src/index.html 文件中添加脚本以使其始终捆绑。