将React dev模式更改为生产模式

时间:2018-05-04 09:48:37

标签: reactjs webpack webpack-production

我找不到任何有用的东西来帮助我理解如何在React中将开发模式更改为生产模式。我是否安装了任何其他套餐?什么是最小化我的js和css文件的插件?

这是我的webpack.config:

module.exports = {
entry: ["whatwg-fetch", "./js/app.jsx"],
output: {
    filename: "./js/out.js"
},
devServer: {
    inline: true,
    contentBase: './',
    port: 3001
},
watch: true,

module: {
    loaders: [{
        test: /\.jsx$/,
        exclude: /node_modules/,
        loader: 'babel-loader',
        query: {
            presets: ['es2015','stage-2', 'react']
        }
    }, {
        test: /\.scss$/,
        loader: ['style-loader', 'css-loader' , 'sass-loader',]
    },
        {
            test: /\.(jpe?g|png|gif|svg)$/i,
            exclude: /node_modules/,
            use: [
                {
                    loader: 'file-loader',
                    options: {
                        name: '[path][name].[ext]'
                    }
                }
            ]
        }
    ]
}
};

1 个答案:

答案 0 :(得分:1)

至于webpack v4使用mode

module.exports = {
  mode: 'production',
  entry: ["whatwg-fetch", "./js/app.jsx"],
  output: {
    filename: "./js/out.js"
  },

这会将process.env.NODE_ENV设置为production

对于早期版本,使用WebpackDefinePlugin设置NODE_ENV

plugins: [
    new webpack.DefinePlugin({
        'process.env': {
            'NODE_ENV': JSON.stringify('production')
        }
    }),
]