作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
yarn build help yarn run v1.9.4 $ re-6ren">
我使用 create-react-app 创建了一个应用程序并且在尝试构建生产优化版本时遇到错误 yarn build
:
> yarn build help
yarn run v1.9.4
$ react-scripts build help
Creating an optimized production build...
Failed to compile.
Expected a pseudo-class or pseudo-element.
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
Compiled successfully!
You can now view note-app in the browser.
Local: http://localhost:3000/
On Your Network: http://192.168.0.54:3000/
Note that the development build is not optimized.
To create a production build, use yarn build.
最佳答案
错误消息“需要伪类或伪元素。”可能会在导入的 CSS 文件之一中提示伪类的一些语法错误。
例如:
**header nav li:last-child {
margin-right: 0;
}**
**header nav li: last-child {
margin-right: 0;
}**
关于创建 react 应用程序构建错误 "Expected a pseudo-class or pseudo-element.",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53185678/
我是一名优秀的程序员,十分优秀!