This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
vue.config.js
61 lines (51 loc) · 1.45 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
const path = require("path")
module.exports = {
publicPath: "/",
devServer: {
host: "0.0.0.0",
watchContentBase: true,
},
chainWebpack: config => {
const types = ["vue-modules", "vue", "normal-modules", "normal"]
types.forEach(type => addStyleResource(config.module.rule("stylus").oneOf(type)))
config.module
.rule('vue')
.use('vue-loader')
.tap(options => {
options.transformAssetUrls = {
audio: 'src/assets/audio'
}
return options
})
config
.plugin('html')
.tap(args => {
args[0].title = 'Mc Roulette'
return args
})
config.module.rule('worker')
.test(/\.worker\.js$/i)
.use('worker-loader')
.loader('worker-loader');
config.module
.rule("images")
.use("url-loader")
.loader("url-loader")
.tap(options => Object.assign(options, { limit: 10240 }))
},
pluginOptions: {
'style-resources-loader': {
preProcessor: 'stylus',
patterns: [],
}
}
}
function addStyleResource(rule) {
rule.use("style-resource")
.loader("style-resources-loader")
.options({
patterns: [
path.resolve(__dirname, "./src/styles/imports.styl"),
],
})
}