webpack 构建同时适用于手机和电脑的调试服务器

Posted 吃个石头

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webpack 构建同时适用于手机和电脑的调试服务器相关的知识,希望对你有一定的参考价值。

plugins

  plugins: [
    new htmlWebpackPlugin({ // 使用模板同时生成 pc.html和mobile.html
      title: ‘pc‘,
      filename: ‘pc.html‘,
      hash: true,
      template: path.resolve(__dirname, ‘../src/template.html‘),
      chunks: [‘pc‘] // 只注入pc.js
    }),
    new HtmlWebpackPlugin({ 
      title: ‘mobile‘,
      hash: true,
      filename: ‘mobile.html‘, 
      template: path.resolve(__dirname, ‘../src/template.html‘),
      chunks: [‘mobile‘] // 只注入mobile.js
    }),
  ]

 webpack-dev-server

devServer: {
    historyApiFallback: {
      rewrites: [
      {
        from: /.*/, // 让request url 重写,这儿默认是请求html文件会运行to方法。
        to(ctx) {
          if (isMoble(ctx.request.get(‘user-agent‘))) { // 获取请求客服端信息,如果是mobile,重定向到mobile.html。
            console.log(‘mobile‘)
            return ‘/mobile.html‘ // 若为手机端,地址改为mobile.html
          } else {
            console.log(‘pc‘) // 若为pc端,地址改为pc.html
            return ‘/pc.html‘
          }
        }
      }
    ]
  },
}

 

以上是关于webpack 构建同时适用于手机和电脑的调试服务器的主要内容,如果未能解决你的问题,请参考以下文章

CountVectorizer 是不是应该同时适用于训练集和测试集?

如何编写一个同时适用于 HSQLDB 和 MySQL 的查询以在 WHERE 子句中为日期添加天数?

一,Serializer和ModelSerializer

带有自定义 webpack 构建的 vscode 节点调试器

Vue:概况

Android机USB调试功能