成都创新互联网站制作重庆分公司

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环境
文章来源:http://cxhlcq.com/article/ppoche.html

其他资讯

在线咨询

微信咨询

电话咨询

028-86922220(工作日)

18980820575(7×24)

提交需求

返回顶部