react项目need an appropriate loader to handle this file type
react项目报错:
You may need an appropriate loader to handle this file type.
|
> ReactDOM.render(<App />, document.getElementById("app"));
webpack
{
test: /\.js$/,
exclude: "/node_modules/",
use: ["babel-loader"]
},
.babelrc:
{
"presets": ["env", "react"]
}
index.js
import React from "react";
import ReactDOM from "react-dom";
import App from "./components/App";
import "./styles/index.scss";
ReactDOM.render(<App />, document.getElementById("app"));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
babel里面要配置支持jsx语法
安装 sass-loader