Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Windows 下,当我在项目上运行 grunt 时出现以下错误:
找不到“grunt.js”配置文件。你需要帮助吗?
我的配置与我的 mac 完全相同,但它失败了 - 有人看到了吗?
这是我为解决此问题所做的工作:
全局卸载 grunt:
npm uninstall -g grunt
全局安装 grunt-cli:
npm install -g grunt-cli
然后,在项目根目录中:
npm install
一切都很好。希望这适用于其他遇到此问题的人。