1. 程式人生 > >create-react-app簡單操作

create-react-app簡單操作

all 進入 文件夾 bpa 數組參數 數組 out pos script

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

  版本16以上的react不支持2.8.1的路由

create-react-app簡單操作