我找不到任何有用的东西来帮助我理解如何在 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]'
}
}
]
}
]
}
};