Gulp throwing error: File not found with singular glob

∥☆過路亽.° 提交于 2019-12-05 00:22:06

As it turns out I missed changing file name in HTML file as it was calling main.css instead of style.css.

    <!--build:css css/main.min.css -->
    <link rel="stylesheet" href="css/main.css">
    <!-- endbuild -->

Changed it to:

    <!--build:css css/style.min.css -->
    <link rel="stylesheet" href="css/style.css">
    <!-- endbuild -->

An honest mistake but I believe someone else can run into something similar :)

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!