roadhog 临盆环境支撑静态文件名加 hash 和 CDN 设置

题目来源于:https://github.com/sorrycc/ro…

Workaround:

思绪

装置

npm i -D ejs-loader html-webpack-plugin webpack-md5-hash

无需装置 extract-text-webpack-plugin 由于 roadhog 已带了 1.0.1 版,假如本身装置了 2.x 版反而能够出题目。须要分外装置 ejs-loader 由于 webpack 设置里会用到

webpack.config.js

const ExtractTextPlugin = require('extract-text-webpack-plugin')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const WebpackMd5Hash = require('webpack-md5-hash')

module.exports = function (config, env) {
  config.module.loaders[0].exclude.push(/\.ejs$/)    // 注 1
  if (env === 'production') {
    config.output.filename = '[name].[chunkhash].js'
    config.output.chunkFilename = '[chunkhash].async.js'
    config.plugins[3] = new ExtractTextPlugin('[contenthash:20].css')    // 注 2
    config.plugins.push(
      new HtmlWebpackPlugin({
        template: 'ejs!src/index.ejs',    // 注 3
        inject: false,
        minify: { collapseWhitespace: true },
        production: true,
      }),
      new WebpackMd5Hash()
    )
  } else {
    config.plugins.push(
      new HtmlWebpackPlugin({
        template: 'ejs!src/index.ejs',
        inject: true,
      }),
    )
  }
  return config
}

[1] roadhog 默许设置把非 特定花样 的文件都用 url-loader 去加载,然则 html-webpack-plugin 须要的 ejs 文件会变成 base64 编码,所以要把 ejs 花样到场 loader 白名单,参考

[2] 掩盖 roadhog 的 设置

[3] roadhog 对 html 默许用的 file-loader,这里的 html-webpack-plugin 须要读取其内容作为模板,所以换成 ejs,也就不再须要 index.html

.roadhogrc

{
  "env": {
    "production": {
      "define": {
        "__CDN__": "https://cdn.example.com"
      }
    }
  }
}

.eslintrc

{
  "globals" : {
    "__CDN__": false
  }
}

index.ejs

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Example</title>
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <% if (htmlWebpackPlugin.options.production) { %>
    <%= htmlWebpackPlugin.files.css.map((item) => {
      return `<link href="${__CDN__}${item}" rel="stylesheet">`
    }) %>
  <% } %>
</head>
</head>
<body>
  <div id="root"></div>
  <% if (htmlWebpackPlugin.options.production) { %>
    <%= htmlWebpackPlugin.files.js.map((item) => {
      return `<script src="${__CDN__}${item}" charset="utf-8"></script>`
    }) %>
  <% } %>
</body>
</html>

index.js 里去掉 `import ‘./index.html’ (假如有的话)

如许就同时统筹了开辟环境和布置环境运用统一套 html 进口,而且开辟环境运用当地文件,布置环境运用根据文件内容 MD5 定名了的 CDN 文件(轻易缓存掌握)

参考

    原文作者:mdluo
    原文地址: https://segmentfault.com/a/1190000009321507
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞