Webpack prerender-spa-plugin 和 compression-webpack-plugin。 index.html 未压缩

Webpack prerender-spa-plugin with compression-webpack-plugin. index.html not compressed

我正在构建一个安装了 vue-cli-plugin-compression 和 vue-cli-plugin-prerender-spa 的 vue cli 3 应用程序。 (在引擎盖下,这些使用 prerender-spa-plugin 和 compression-webpack-plugin)。

prerender-spa-plugin 将 index.html 重命名为 app.html。然后它预呈现 app.html 并将生成的 html 存储在新的 index.html 中。页面已正确预呈现并且 app.html 已正确压缩。但是,生成的 index.html(作为预呈现结果的页面) gzipped。我怎样才能让预渲染的结果也被 gzip 压缩?

这是我的 vue.config.js:

module.exports = {
  devServer: {
    port: 3000
  },
  configureWebpack: {
    devtool: 'source-map'
  },
  pluginOptions: {
    prerenderSpa: {
      customRendererConfig: {
        injectProperty: '__PRERENDER_INJECTED',
        inject: {},
      },
      registry: undefined,
      renderRoutes: [
        '/'
      ],
      useRenderEvent: true,
      headless: true,
      onlyProduction: true,
      postProcess: route => {
        // Defer scripts and tell Vue it's been server rendered to trigger hydration
        route.html = route.html
          .replace(/<script (.*?)>/g, '<script  defer>')
          .replace('id="app"', 'id="app" data-server-rendered="true"');
        return route;
      }
    },
    compression:{
      gzip: {
        filename: '[path].gz[query]',
        algorithm: 'gzip',
        test: /\.(js|js\.map|css|html)$/,
        minRatio: 0.8,
      }
    }
  }
};

我尝试在压缩前进行预渲染,但它没有任何改变:

chainWebpack: (config) => {
  config.plugin('pre-render').before('gzip-compression');
  config.plugin('gzip-compression').after('html');
},

因此,事实证明 prerender-spa-plugin 已经过时并且仅适用于 webpack 4,大多数问题已在 webpack 5 中通过新的 hooks 得到解决

所以我重构了 prerender-spa-plugin 的代码库以适用于 webpack 5(并且仅适用于它),我还必须删除一些功能,如 html 缩小,因为现在其他压缩插件将在 html

上正确 运行

你可以在 npm 上找到包 prerender-spa-plugin-next

您需要将 vue cli 插件更新到版本 ^5 才能使用 webpack 5

撰写本文时:

"@vue/cli-plugin-babel": "^5.0.4",
"@vue/cli-plugin-eslint": "^5.0.4",
"@vue/cli-plugin-router": "^5.0.4",
"@vue/cli-service": "^5.0.4",
"compression-webpack-plugin": "^6.1.1",
"html-webpack-plugin": "^5.3.1",
...

确保所有其他依赖项也已更新(Eslint 和所有 webpack 插件和加载器)

这可能会变成大量的反复试验才能在大更新后进行编译,但这些麻烦是值得的

如果您对我的包裹的使用有任何疑问,请告诉我