-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
43 lines (41 loc) · 991 Bytes
/
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
/**
* @Author: Brogan Miner <Brogan>
* @Date: 2019-01-09T13:26:49-08:00
* @Email: [email protected]
* @Last modified by: Brogan
* @Last modified time: 2019-02-01T14:07:17-08:00
*/
const path = require('path')
module.exports = {
publicPath:
process.env.NODE_ENV === 'production' ? '/sustainability_jeopardy/' : '/',
css: {
loaderOptions: {
sass: {
prependData: '@import "@/assets/style-variables.scss";'
}
}
},
pluginOptions: {
'style-resources-loader': {
preProcessor: 'scss',
patterns: [path.resolve(__dirname, 'src/assets/style-variable.scss')]
}
},
configureWebpack: {
optimization: {
removeAvailableModules: false,
removeEmptyChunks: false,
splitChunks: false
},
module: {
rules: [
{
test: /\.js$/,
include: path.resolve(__dirname, 'src'),
use: ['cache-loader', 'thread-loader', 'babel-loader']
}
]
}
}
}