This repository was archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvue.config.js
More file actions
65 lines (61 loc) · 1.47 KB
/
Copy pathvue.config.js
File metadata and controls
65 lines (61 loc) · 1.47 KB
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
const defaultSetting = require('./src/settings.js')
const name = defaultSetting.title || 'Vue3 Demo'
const path = require('path')
const resolve = dir => {
return path.join(__dirname, dir)
}
module.exports = {
publicPath: process.env.NODE_ENV === 'production' ? './' : '/',
outputDir: 'dist',
assetsDir: 'static',
indexPath: 'index.html',
filenameHashing: false,
pages: {
index: {
entry: 'src/main.js',
template: 'public/index.html',
filename: 'index.html',
title: name,
chunks: ['chunk-vendors', 'chunk-common', 'index']
}
},
lintOnSave: process.env.NODE_ENV === 'production' ? false : 'default',
runtimeCompiler: false,
transpileDependencies: [],
productionSourceMap: process.env.NODE_ENV !== 'production',
crossorigin: '',
integrity: false,
configureWebpack: {
name,
resolve: {
alias: {
'@': resolve('src'),
cmp: resolve('src/components')
}
}
},
chainWebpack (config) {},
css: {
// requireModuleExtension: true,
extract: process.env.NODE_ENV === 'production',
sourceMap: process.env.NODE_ENV !== 'production',
loaderOptions: {
css: {},
sass: {}
}
},
devServer: {
host: 'localhost',
port: 8080,
// disableHostCheck: true,
/* proxy: {
[process.env.BASE_API]: {
target: 'http://some_server_host.com',
pathRewrite: { '^/api': '' },
changeOrigin: true
}
}, */
compress: true,
open: true
}
}