This repository was archived by the owner on Jan 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
69 lines (62 loc) · 1.82 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
63
64
65
66
67
const {defineConfig} = require('@vue/cli-service')
const path = require('path')
function resolve(dir) {
return path.join(__dirname, dir)
}
//实现element-plus的自动按需引入
const AutoImport = require('unplugin-auto-import/webpack')
const Components = require('unplugin-vue-components/webpack')
const {ElementPlusResolver} = require('unplugin-vue-components/resolvers')
const dayjs = require('dayjs')
const time = dayjs().format('YYYY-M-D HH:mm:ss')
process.env.VUE_APP_UPDATE_TIME = time
module.exports = defineConfig({
lintOnSave: false,
devServer: {
port: process.env.VUE_APP_PORT || 7090,
proxy: process.env.VUE_APP_PROXY === 'false' ? null : {
"/proxy": {
// 目标代理服务器地址
target: "http://localhost:8088/",
//是否允许跨域
changeOrigin: true,
secure: true,
pathRewrite: {
"^/proxy": "/"
}
}
},
},
configureWebpack: {
module: {
rules: [
{
test: /\.md$/,
use: [
{loader: 'html-loader'},
{loader: 'markdown-loader', options: {}}
]
}
]
},
plugins: [
AutoImport({
resolvers: [ElementPlusResolver()],
}),
Components({
resolvers: [ElementPlusResolver()],
})
],
},
chainWebpack: config => {
config.module
.rule('md')
.test(/\.md$/)
.use('html-loader')
.loader('html-loader')
.end()
.use('markdown-loader')
.loader('markdown-loader')
.end()
}
})