React_Class1

开发环境:node v8.9.1,npm 5.5.1,开发项目中的去毛机。(eslint)

1、安装 cnpm  install eslint-config-react-app selint-loader eslint-plugin-flowtype -D

2、修改package.json.

"eslintConfig": {
"extends": "react-app",
 "rules": {
"import/no-webpack-loader-syntax": 0,
   "no-script-url": 0,
   "jsx-a11y/href-no-hash": 2
 }
}

3、修改webpack.config.js

const webpack = require('webpack');//引入webpack
const opn = require('opn');//打开浏览器
const merge = require('webpack-merge');//webpack配置文件合并
const path = require("path");
const baseWebpackConfig = require("./webpack.base.conf");//基础配置
const webpackFile = require("./webpack.file.conf");//一些路径配置
const eslintFormatter = require('react-dev-utils/eslintFormatter');

let config = merge(baseWebpackConfig, {
output: {
path: path.resolve(webpackFile.devDirectory),
       filename: 'js/[name].js',
       chunkFilename: "js/[name]-[id].js",
       publicPath: ''
   },
   plugins: [
/*设置开发环境*/
       new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('development'),
           }
}),
       /*设置热更新*/
       new webpack.HotModuleReplacementPlugin(),
       /* common 业务公共代码,vendor引入第三方 */
       new webpack.optimize.CommonsChunkPlugin({
name: ["common", "vendor"],
       }),
       /* 防止 vendor hash 变化 */
       // extract webpack runtime and module manifest to its own file in order to
       // prevent vendor hash from being updated whenever app bundle is updated
       new webpack.optimize.CommonsChunkPlugin({
name: 'manifest',
           chunks: ['vendor']
}),
   ],
   module: {
rules: [
{
test: /\.(js|jsx)$/,
               use: [
'cache-loader',
                   'babel-loader',
               ],
               include: [
path.resolve(__dirname, "../../app"),
                   path.resolve(__dirname, "../../entryBuild")
],
               exclude: [
path.resolve(__dirname, "../../node_modules")
],
           },
           {
test: /\.(js|jsx)$/,
               enforce: 'pre',
               use: [
{
options: {
formatter: eslintFormatter,
                           eslintPath: require.resolve('eslint'),
                           // @remove-on-eject-begin
                           baseConfig: {
extends: [require.resolve('eslint-config-react-app')],
                           },
                           //ignore: false,
                           useEslintrc: false,
                           // @remove-on-eject-end
                       },
                       loader: require.resolve('eslint-loader'),
                   },
               ],
               include: [
path.resolve(__dirname, "../../app")
],
               exclude: [
path.resolve(__dirname, "../../node_modules")
],
           },
           {
test: /\.(css|pcss)$/,
               loader: 'style-loader?sourceMap!css-loader?sourceMap!postcss-loader?sourceMap',
               exclude: /node_modules/
           },
           {
test: /\.(png|jpg|gif|ttf|eot|woff|woff2|svg|swf)$/,
               loader: 'file-loader?name=[name].[ext]&outputPath=' + webpackFile.resource + '/'
           }
]
},
   /*设置api转发*/
   devServer: {
host: '0.0.0.0',
       port: 8080,
       hot: true,
       inline: true,
       contentBase: path.resolve(webpackFile.devDirectory),
       historyApiFallback: true,
       disableHostCheck: true,
       proxy: [
{
context: ['/api/**', '/u/**'],
               target: 'http://192.168.12.100:8080/',
               secure: false
           }
],
       /*打开浏览器 并打开本项目网址*/
       after() {
opn('http://localhost:' + this.port);
       }
}
});
module.exports = config;
4、npm run dev 执行代码即可。

猜你喜欢

转载自www.cnblogs.com/GongYaLei/p/9255902.html
今日推荐