我正在将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删除这些评论