-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvue.config.js
60 lines (58 loc) · 1.7 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
const { defineConfig } = require('@vue/cli-service')
const path = require('path')
function resolve(dir) {
return path.join(__dirname, '.', dir)
}
module.exports = defineConfig({
transpileDependencies: true,
// publicPath: './',
// 解决跨域问题
devServer: {
port: 9999, // 设置本地默认端口 选填
// proxy: { // 设置代理,必须填
// '/': { // 设置拦截器 拦截器格式:斜杠+拦截器名字(名字自己定)
// target: 'http://localhost:8888', // 代理的目标地址
// changeOrigin: true, // 是否设置同源,输入是的
// pathRewrite: { // 路径重写
// '/': '' // 选择忽略拦截器里面的单词
// }
// }
// }
},
chainWebpack: (config) => {
// 设置标题名称
config
.plugin('html')
.tap(args => {
args[0].title = '电影推荐系统'
return args
})
// 添加svg文件
config.module
.rule('svg')
.exclude.add(resolve('src/icons'))
.end()
config.module
.rule('icons')
.test(/\.svg$/)
.include.add(resolve('src/icons'))
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]'
})
.end()
// 编译某些npm包里的es6代码
config.module
.rule('vxe')
.test(/\.js$/)
.include
.add(resolve('node_modules/vxe-table'))
.add(resolve('node_modules/vxe-table-plugin-antd'))
.end()
.use()
.loader('babel-loader')
.end()
}
})