Disable inject option of HTML plugin
This commit is contained in:
parent
39ea5f492d
commit
13cc056e51
1 changed files with 14 additions and 14 deletions
|
@ -7,7 +7,6 @@ const PrerenderSpaPlugin = require('prerender-spa-plugin');
|
||||||
const SriPlugin = require('webpack-subresource-integrity');
|
const SriPlugin = require('webpack-subresource-integrity');
|
||||||
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||||
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
entry: {
|
entry: {
|
||||||
index: './src/main.js'
|
index: './src/main.js'
|
||||||
|
@ -87,9 +86,10 @@ if (process.env.NODE_ENV === 'production') {
|
||||||
new HtmlWebpackPlugin({
|
new HtmlWebpackPlugin({
|
||||||
template: 'index.html',
|
template: 'index.html',
|
||||||
filename: '../index.html',
|
filename: '../index.html',
|
||||||
|
inject: false
|
||||||
}),
|
}),
|
||||||
new SriPlugin({
|
new SriPlugin({
|
||||||
hashFuncNames: ['sha256', 'sha384'],
|
hashFuncNames: ['sha256', 'sha384']
|
||||||
}),
|
}),
|
||||||
new PrerenderSpaPlugin({
|
new PrerenderSpaPlugin({
|
||||||
staticDir: path.join(__dirname),
|
staticDir: path.join(__dirname),
|
||||||
|
@ -98,8 +98,8 @@ if (process.env.NODE_ENV === 'production') {
|
||||||
renderedRoute.html = pretty(renderedRoute.html, {ocd: true})
|
renderedRoute.html = pretty(renderedRoute.html, {ocd: true})
|
||||||
.replace('render', 'prerender')
|
.replace('render', 'prerender')
|
||||||
.replace(/(data-v-[0-9a-f]+)=""/gm, '$1');
|
.replace(/(data-v-[0-9a-f]+)=""/gm, '$1');
|
||||||
return renderedRoute
|
return renderedRoute;
|
||||||
},
|
}
|
||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue