-
Notifications
You must be signed in to change notification settings - Fork 0
/
vue.config.js
42 lines (40 loc) · 1.25 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
// eslint-disable-next-line @typescript-eslint/no-var-requires
const path = require('path')
process.env.DEPLOY_ENV = process.env.npm_config_dp_env || 'default'
module.exports = {
pages: {
index: {
// page 的入口
entry: 'src/main',
// 模板来源
template: 'public/index.html',
// 在 dist/index.html 的输出
filename: 'index.html',
// 当使用 title 选项时,
// template 中的 title 标签需要是 <title><%= htmlWebpackPlugin.options.title %></title>
title: 'Chord和弦图',
// 在这个页面中包含的块,默认情况下会包含
// 提取出来的通用 chunk 和 vendor chunk。
chunks: ['chunk-vendors', 'chunk-common', 'index']
}
},
css: {
requireModuleExtension: true,
loaderOptions: {
css: {
// 注意:以下配置在 Vue CLI v4 与 v3 之间存在差异。
// Vue CLI v3 用户可参考 css-loader v1 文档
// https://github.com/webpack-contrib/css-loader/tree/v1.0.1
modules: {
},
localsConvention: 'camelCaseOnly'
},
scss: {
additionalData: '@import "~@/style/variables.scss";'
}
}
},
publicPath: process.env.DEPLOY_ENV === 'gh-page'
? '/chord/'
: '/'
}