0

我正在使用 react-codemirror2。我曾经npx create-react-app appname创建我的应用程序。

但是当我尝试运行开发服务器时,它给了我以下错误 -

./node_modules/codemirror/mode/rpm/changes/index.html 1:0
Module parse failed: Unexpected token (1:0)
You may need an appropriate loader to handle this file type.
> <!doctype html>
| 
| <title>CodeMirror: RPM changes mode</title>

一种解决方案建议更改 modulesDirectories。我尝试使用npm run eject. 但没有成功。

请帮助我

4

1 回答 1

0

doctype 声明不正确,应该是:

<!DOCTYPE html>

注意DOCTYPE应该大写。

于 2019-03-22T04:38:46.050 回答