webpack-优化-最小化评论而不删除评论

时间:2018-07-31 12:04:17

标签: webpack

我正在将CSS提取到单独的文件中,并且输出到未优化的bundle.css是

/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;

但是当我使用webpack构建--optimize-minimize时,它确实进行了优化,但是输出类似于

/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;line-height:1.1$

/normalize.css */#NOSPACE#html{font-famil之间不要有空格

这会导致在浏览器中加载CSS时出现问题。如何获取webpack删除这些评论

0 个答案:

没有答案