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 HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||
|
||||
|
||||
module.exports = {
|
||||
entry: {
|
||||
index: './src/main.js'
|
||||
|
@ -87,9 +86,10 @@ if (process.env.NODE_ENV === 'production') {
|
|||
new HtmlWebpackPlugin({
|
||||
template: 'index.html',
|
||||
filename: '../index.html',
|
||||
inject: false
|
||||
}),
|
||||
new SriPlugin({
|
||||
hashFuncNames: ['sha256', 'sha384'],
|
||||
hashFuncNames: ['sha256', 'sha384']
|
||||
}),
|
||||
new PrerenderSpaPlugin({
|
||||
staticDir: path.join(__dirname),
|
||||
|
@ -98,8 +98,8 @@ if (process.env.NODE_ENV === 'production') {
|
|||
renderedRoute.html = pretty(renderedRoute.html, {ocd: true})
|
||||
.replace('render', 'prerender')
|
||||
.replace(/(data-v-[0-9a-f]+)=""/gm, '$1');
|
||||
return renderedRoute
|
||||
},
|
||||
return renderedRoute;
|
||||
}
|
||||
})
|
||||
]);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue