fix: builds without warnings from npm audit
add node plugin to vue webpack config
This commit is contained in:
parent
c4071cf38a
commit
304de45cdd
1 changed files with 19 additions and 15 deletions
|
@ -1,5 +1,6 @@
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const prettier = require('prettier');
|
const prettier = require('prettier');
|
||||||
|
const NodePolyfillPlugin = require('node-polyfill-webpack-plugin');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
publicPath: '',
|
publicPath: '',
|
||||||
|
@ -17,20 +18,23 @@ module.exports = {
|
||||||
.end();
|
.end();
|
||||||
},
|
},
|
||||||
configureWebpack: {
|
configureWebpack: {
|
||||||
plugins: process.env.DEPLOY
|
plugins: [
|
||||||
? [
|
new NodePolyfillPlugin(),
|
||||||
new (require('prerender-spa-plugin'))({
|
...(process.env.DEPLOY
|
||||||
staticDir: path.join(__dirname, 'dist'),
|
? [
|
||||||
routes: ['/'],
|
new (require('prerender-spa-plugin'))({
|
||||||
postProcess(renderedRoute) {
|
staticDir: path.join(__dirname, 'dist'),
|
||||||
renderedRoute.html = prettier
|
routes: ['/'],
|
||||||
.format(renderedRoute.html, { filepath: 'index.html', printWidth: 120 })
|
postProcess(renderedRoute) {
|
||||||
.replace('render', 'prerender')
|
renderedRoute.html = prettier
|
||||||
.replace(/(data-v-[0-9a-f]+)=""/gm, '$1');
|
.format(renderedRoute.html, { filepath: 'index.html', printWidth: 120 })
|
||||||
return renderedRoute;
|
.replace('render', 'prerender')
|
||||||
},
|
.replace(/(data-v-[0-9a-f]+)=""/gm, '$1');
|
||||||
}),
|
return renderedRoute;
|
||||||
]
|
},
|
||||||
: [],
|
}),
|
||||||
|
]
|
||||||
|
: []),
|
||||||
|
],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue