-
Notifications
You must be signed in to change notification settings - Fork 3
/
vue.config.js
32 lines (31 loc) · 1.03 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
module.exports = {
publicPath: '.',
transpileDependencies: ['vue-mapbox'],
chainWebpack: (config) => {
const 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: {
plugins: [
{ cleanupIDs: false },
{ collapseGroups: false },
{ removeEmptyContainers: 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');
}
};