Angular2禁用css捆绑

时间:2018-06-15 12:21:10

标签: css angular webpack

有没有办法禁用css捆绑进行调试?当我试图找到一种风格的来源时,它被埋在10k行styles.bundle.css中。

enter image description here

1 个答案:

答案 0 :(得分:0)

您可能已在angular-cli.json文件的styles属性中添加了要包含为协作CSS的文件。您可以通过提供输出文件来分离一些文件,以便它不会在styles.bundle.css中合并。

<强> .angular-cli.json

"styles": [
    "file1.scss",
    {
      "input": "file2.css",
      "output": "file2",
      "lazy": true
    }
  ],

Check this git link for segregating the files