React+TypeScript+webpack4多入口配置详解(3)

mode分为两种环境,一种是开发环境(development),一种是生产环境(production)。开发环境就是我们写代码的环境,生产环境就是代码放到线上的环境。这两种环境的最直观区别就是,开发环境的代码不提供压缩,生产环境的代码提供压缩。

配置devServer

const webpackConfig = { devServer: { // 本地服务器所加载的页面所在的目录 contentBase: srcPath, //热更新 hot: true, //服务端口 port: "7788", // 是否向Chunk中注入代理客户端,默认注入 inline: true, // publicPath: '/dist/', historyApiFallback: { index: "template.html", }, //默认检查hostname disableHostCheck: true, compress: true, open: true // 自动打开首页 } }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/292eceab60383c171f174a1b553dc34c.html