forked from slanatech/dashblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
62 lines (56 loc) · 1.35 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// vue.config.js
const path = require('path');
const webpack = require('webpack');
const PerspectivePlugin = require('@finos/perspective-webpack-plugin');
// We will not include plotly.js-dist into lib bundle, to keep lib size reasonable.
// plotly.js-dist is ~6M
// App that uses dashblocks should have plotly.js-dist in it's dependencies
// Also not including dygraphs as it must be loaded on demand
// TODO Enable for Demo app build
function getProdExternals() {
return {
'plotly.js-dist': {
commonjs: 'plotly.js-dist',
commonjs2: 'plotly.js-dist'
}
/*
dygraphs: {
commonjs: 'dygraphs',
commonjs2: 'dygraphs'
}
*/
};
}
module.exports = {
publicPath: '/demo/',
devServer: {
proxy: 'http://localhost:3400'
},
configureWebpack: {
//externals: process.env.NODE_ENV === 'production' ? getProdExternals() : {},
plugins: [
// Ignore all locale files of moment.js
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
new PerspectivePlugin()
],
resolve: {
alias: {
dashblocks: path.resolve(__dirname, 'src/index.esm.js')
}
},
module: {
rules: [
{
sideEffects: true
}
]
}
},
pluginOptions: {
quasar: {
importStrategy: 'manual',
treeShake: true
}
}
//transpileDependencies: ['quasar']
};