create-react-app简单操作

出门莫恨无人随,书中车马多如簇。这篇文章主要讲述create-react-app简单操作相关的知识,希望能为你提供帮助。
1、下载
cnpm install create-react-app -g
2、创建文件
create-react-app +文件名字
3、scss配置
下载
cnpm i [email  protected] [email  protected] -D
配置
在node_modules文件夹中,进入react-scripts文件夹中的config文件夹
找到webpack.config.dev.js文件
在module配置对象中找到exclude对象,在数组参数中添加/\.scss$/
添加exclude同级对象,配置scss
{
test:/\.scss$/,
loaders:[‘style-loader‘,‘css-loader‘,‘sass-loader‘]
}
4、下载react及路由
cnpm i [email  protected] [email  protected] -S
cnpm i [email  protected] -S
【create-react-app简单操作】版本16以上的react不支持2.8.1的路由

    推荐阅读