我有一个React项目,我们在其中制作webpack以便从本地和云系统运行它,但这是一个小解决方法,每次我们在云中运行它时都需要做。
const devWebpackConfig = {
entry: {
/**
* Add or remove the libraries which goes into vendor bundle file
*/
vendor: ['react', 'react-dom', 'react-router-dom'],
},
devServer: {
// Comment the below line to run from cloud.
host: 'localhost',
// Comment the below line to run from local.
//disableHostCheck: true,
// How do we make sure we need not comment and uncomment this code everytime we run it from cloud systems
port: 8181
},
plugins: [
]
}
我们如何确保每次在云系统中运行该代码时都无需注释和取消注释该代码,webpack能否根据我们使用的环境(例如本地或云计算机)自动将其打包。