generator-react-webpack
Posted 前路亦是故乡
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了generator-react-webpack相关的知识,希望对你有一定的参考价值。
初始化:
配置全局环境
npm install -g yo
npm install -g generator-react-webpack
新建项目文件夹
mkdir project
cd project
yo react-webpack
创建新组件
yo react-webpack:component componentName
(新建componentName.js,componentName.css)
添加postcss规则
npm i -S autoprefixer
cfg/base.js下添加规则:
plugins:[ require(‘autoprefixer‘)({ browsers: [‘last 2 versions‘, ‘ie >= 8‘] })]
以上是关于generator-react-webpack的主要内容,如果未能解决你的问题,请参考以下文章