webpack配置react环境

  1. webpack插件:
    npm  install  babel-core  babel-loader  babel-preset-react  babel-preset-es2015  create-react-class  prop-types
  2. sublime插件:
    jsx  // 高亮jsx语法
  3. 修改webpack配置文件:
    webpack配置react环境
    const path = require('path');
    module.exports = {
    entry: './src/index.js',
    devtool: 'inline-source-map',
    devServer: {
      contentBase: './dist'
    },
    output: {
      filename: 'bundle.js',
      path: path.resolve(__dirname, 'dist')
    },
    module: {
      rules: [
        {
          test: /\.jsx?$/,
          exclude: /node_modules/,
          loader: 'babel-loader',
          query: {
            presets: ['es2015', 'react']
          }
        }
      ]
    }
    };
  4. 测试:
    webpack配置react环境
    webpack配置react环境
    webpack配置react环境

网页名称:webpack配置react环境
URL链接:http://csdahua.cn/article/ppoche.html
扫二维码与项目经理沟通

我们在微信上24小时期待你的声音

解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流