forked from DOI-USGS/gw-conditions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
38 lines (37 loc) · 1.29 KB
/
vue.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
module.exports = {
publicPath: '.',
chainWebpack: (config) => {
var svgRule = config.module.rule('svg');
svgRule.uses.clear();
svgRule
//.use('babel-loader')
//.loader('babel-loader')
//.end()
.use('vue-svg-loader')
.loader('vue-svg-loader')
.options({
svgo: false
/* svgo: {
plugins: [
{ cleanupIDs: false },
{ collapseGroups: false },
{ removeEmptyContainers: false },
{ removeDoctype: false },
{ removeXMLProcInst: false },
{ removeXMLNS: false },
{ removeTitle: false },
{ removeDesc: false },
{ removeDimensions: false },
],
}, */
});
/*
As described on StackOverflow:
https://stackoverflow.com/questions/64205612/how-to-correct-preload-key-requests-performance-problem-on-lighthouse-with-vue
But is in a webpack chain:
https://github.com/neutrinojs/webpack-chain#config-output-shorthand-methods
*/
config.output
.crossOriginLoading('anonymous');
}
};