在我的app.scss文件中,我正在使用
@import "./node_modules/bootstrap/scss/bootstrap";
因为我正在使用(有时更改(一些引导变量到我的 app.scss 中。
我发现使用ember build -prod
它不会在我的最终应用程序中删除 Bootstrap 导入中的注释.css。
所以在我的生产 css 中,我有这个:
/*!
* Bootstrap v4.0.0-beta (https://getbootstrap.com)
* Copyright 2011-2017 The Bootstrap Authors
* Copyright 2011-2017 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/address,dl,ol,p,ul{margin-bottom:1rem}body,caption{text-align:left}........
为什么?
如何删除这些多余的评论?
/*!
是一个"特殊"注释,因为末尾的!
字符不会从构建中删除。它通常包含强制性许可证信息,这意味着如果您使用任何 Bootstrap 资产,剥离它实际上是非法的。