From 13cc056e51f7d6daa01acd1e4b4de17b7747711f Mon Sep 17 00:00:00 2001 From: Boris Kubiak Date: Mon, 17 Sep 2018 22:26:33 +0200 Subject: [PATCH] Disable inject option of HTML plugin --- webpack.config.js | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index d3f88c5..25811a8 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -7,14 +7,13 @@ const PrerenderSpaPlugin = require('prerender-spa-plugin'); const SriPlugin = require('webpack-subresource-integrity'); const HtmlWebpackPlugin = require('html-webpack-plugin'); - module.exports = { entry: { index: './src/main.js' }, output: { - crossOriginLoading: 'anonymous', - path: path.resolve(__dirname, './dist'), + crossOriginLoading: 'anonymous', + path: path.resolve(__dirname, './dist'), publicPath: '/dist/', filename: '[name].js' }, @@ -84,22 +83,23 @@ if (process.env.NODE_ENV === 'production') { warnings: false } }), - new HtmlWebpackPlugin({ - template: 'index.html', - filename: '../index.html', - }), - new SriPlugin({ - hashFuncNames: ['sha256', 'sha384'], - }), + new HtmlWebpackPlugin({ + template: 'index.html', + filename: '../index.html', + inject: false + }), + new SriPlugin({ + hashFuncNames: ['sha256', 'sha384'] + }), new PrerenderSpaPlugin({ staticDir: path.join(__dirname), routes: ['/'], - postProcess (renderedRoute) { - renderedRoute.html = pretty(renderedRoute.html, {ocd: true}) + postProcess(renderedRoute) { + renderedRoute.html = pretty(renderedRoute.html, {ocd: true}) .replace('render', 'prerender') .replace(/(data-v-[0-9a-f]+)=""/gm, '$1'); - return renderedRoute - }, + return renderedRoute; + } }) ]); }