WordPress 和 React - Fronitity 框架内部服务器错误

WordPress and React - Fronitity framework Internal Server Error

我尝试了这个名为 Frontity 的框架。第一次尝试 (运行) 一切都很好,我有我的演示页面,并且运行良好。我关注 these instructions.

对于第二次编译,我得到了这些错误,而且很多:有多个模块的名称只是大小写不同。

唯一改变我所做的是这个(将我的前端连接到我的 WordPress):https://docs.frontity.org/getting-started/connecting-to-wordpress

(再说一次:第一个 运行,很好。) 什么都没有,实际上什么都没有改变,我什至没有启动任何其他软件:)

在这一切之后,我删除了所有内容,移动到另一个文件夹,重新开始整个事情,现在我只得到相同的错误,并且在我的浏览器中出现内部服务器错误。

无论是否使用 运行 连接 xampp 服务器,我都会遇到这个问题。

知道哪里出了问题吗?

Localhost WordPress(xampp),localhost:3000 Frontity(默认),Windows 10,Chrome 浏览器。

errors after compile

您的问题在控制台输出中:

我不确定那些大小写不同的文件在哪一点 生成,但我认为以下内容应该可以解决您的问题:

Ensure that the path you used in your terminal has the correct capitalization. For example if you're using git bash on Windows and your project has the following path:

C:\MyProjects\project-X

If you access it using cd /c/myprojects/project-x (note the lack of capital cases) and then run npm start you might face this problem.

The solution would be to consider the project path case-sensitive and use it as follows:

cd /C/MyProjects/project-X