-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
58 lines (55 loc) · 1.38 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
module.exports = {
chainWebpack: config => {
config
.plugin('html')
.tap(args => {
args[0].title = 'ProteomicsDB'
return args
})
config.module
.rule('css-for-svgs')
.test(/\.css.prdb$/)
.use('file-loader')
.loader('file-loader')
.options({
name: 'css/[name].[contenthash].css',
esModule: false
})
.end()
if (process.env.NODE_ENV === 'development') {
// Babel messes up the source maps so we disable it for development.
// Note that Babel is still used for production builds and might be a potential
// source of slight differences between development and production builds.
// Unless there is a bug in Babel (unlikely) that should not be a problem.
config.module
.rule('js')
.uses
.delete('babel-loader')
// enable source maps in development
config.devtool('source-map')
}
},
configureWebpack: {
module: {
rules: [
{
test: /\.txt$/,
type: 'asset/source'
},
{
test: /bodyMap\/.*?\.svg$/,
type: 'asset/source'
}
]
},
cache: {
type: 'filesystem',
allowCollectingMemory: true,
buildDependencies: {
config: [__filename]
}
}
},
publicPath: process.env.VUE_APP_ROUTER_BASE,
lintOnSave: false
}