generated from JX3BOX/jx3box-vue-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 5
/
vue.config.js
210 lines (201 loc) · 7.51 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
const path = require("path");
const pkg = require("./package.json");
const { JX3BOX, SEO } = require("@jx3box/jx3box-common");
const Setting = require("./setting.json");
module.exports = {
//❤️ Multiple pages ~
pages: {
index: {
title: "休闲栏目 - JX3BOX",
entry: "src/main.js",
template: "public/index.html",
filename: "index.html",
},
face: {
title: "捏脸分享 - JX3BOX",
entry: "src/pages/face.js",
template: "public/index.html",
filename: "face/index.html",
},
body: {
title: "体型分享 - JX3BOX",
entry: "src/pages/body.js",
template: "public/index.html",
filename: "body/index.html",
},
homeland: {
title: "家园指南 - JX3BOX",
entry: "src/pages/homeland.js",
template: "public/index.html",
filename: "homeland/index.html",
},
pet: {
title: "宠物大全 - JX3BOX",
entry: "src/pages/pet.js",
template: "public/index.html",
filename: "pet/index.html",
},
adventure: {
title: "奇遇大全 - JX3BOX",
entry: "src/pages/adventure.js",
template: "public/index.html",
filename: "adventure/index.html",
},
horse: {
title: "坐骑大全 - JX3BOX",
entry: "src/pages/horse.js",
template: "public/index.html",
filename: "horse/index.html",
},
book: {
title: "书籍大全 - JX3BOX",
entry: "src/pages/book.js",
template: "public/index.html",
filename: "book/index.html",
},
furniture: {
title: "家具大全 - JX3BOX",
entry: "src/pages/furniture.js",
template: "public/index.html",
filename: "furniture/index.html",
},
reputation: {
title: "声望大全 - JX3BOX",
entry: "src/pages/reputation.js",
template: "public/index.html",
filename: "reputation/index.html",
},
pvg: {
title: "商贾奇才 - JX3BOX",
entry: "src/pages/pvg.js",
template: "public/index.html",
filename: "pvg/index.html",
},
exam: {
title: "剑三考试 - JX3BOX",
entry: "src/pages/exam.js",
template: "public/index.html",
filename: "exam/index.html",
},
exterior: {
title: "外观大全 - JX3BOX",
entry: "src/pages/exterior.js",
template: "public/index.html",
filename: "exterior/index.html",
},
},
outputDir: process.env["BUILD_MODE"] == "preview" ? path.resolve(__dirname, pkg.name) : 'dist', // 指定构建输出的目录
//❤️ Proxy ~
devServer: {
proxy: {
"/api/serendipity": {
target: "https://pull.j3cx.com/",
onProxyReq: function (request) {
request.setHeader("origin", "");
},
},
"/api/vip": {
target: "https://pay.jx3box.com",
onProxyReq: function (request) {
request.setHeader("origin", "");
},
},
"/api/inspire": {
target: "https://pay.jx3box.com",
onProxyReq: function (request) {
request.setHeader("origin", "");
},
},
"/api/messages": {
target: "https://helper.jx3box.com",
onProxyReq: function (request) {
request.setHeader("origin", "");
},
},
"/api/cms": {
target: process.env["DEV_SERVER"] == "true" ? "http://localhost:7100" : "https://cms.jx3box.com",
// target: "https://cms.jx3box.com",
},
"/api/team": {
target: "https://team.api.jx3box.com",
onProxyReq: function (request) {
request.setHeader("origin", "");
},
},
"/api/buy-licence": {
target: "https://pay.jx3box.com",
onProxyReq: function (request) {
request.setHeader("origin", "");
},
},
"/api/spider": {
target: "https://spider2.jx3box.com",
onProxyReq: function (request) {
request.setHeader("origin", "");
},
},
"/api": {
target: "https://next2.jx3box.com",
onProxyReq: function (request) {
request.setHeader("origin", "");
},
},
},
disableHostCheck: true,
},
//❤️ define path for static files ~
publicPath:
//FOR Localhost => development
(process.env.NODE_ENV === "development" && "/") ||
// BY preview
(process.env.BUILD_MODE == "preview" && `/${pkg.name}/`) ||
//BY origin
(process.env.STATIC_PATH === "origin" && `${JX3BOX.__staticPath["origin"]}${pkg.name}/`) ||
//BY github
(process.env.STATIC_PATH === "github" && `${JX3BOX.__staticPath["github"]}${pkg.name}/`) ||
//BY jsdelivr
(process.env.STATIC_PATH === "jsdelivr" && `${JX3BOX.__staticPath["jsdelivr"]}${pkg.name}@gh-pages/`) ||
//BY OSS=>CDN
(process.env.STATIC_PATH === "mirror" && `${JX3BOX.__staticPath["mirror"]}${pkg.name}/`) ||
//BY relative path
(process.env.STATIC_PATH === "repo" && `/${pkg.name}/`) ||
//BY root path or bind a domain
(process.env.STATIC_PATH == "root" && "/") ||
//for lost
"/",
outputDir: process.env["BUILD_MODE"] == "preview" ? path.resolve(__dirname, pkg.name) : "dist", // 指定构建输出的目录
chainWebpack: (config) => {
//💘 html-webpack-plugin ~
// Multiple pages disable the block below
// config.plugin("html").tap(args => {
// args[0].meta = { //------设置SEO信息
// Keywords: Setting.keys,
// Description: Setting.desc
// };
// args[0].title = Setting.title + SEO.title; //------自动添加标题后缀
// return args;
// });
//💝 in-line small imgs ~
config.module
.rule("images")
.use("url-loader")
.loader("url-loader")
.tap((options) => Object.assign(options, { limit: 10240, esModule: false}));
//💝 in-line svg imgs ~
config.module.rule("vue").use("vue-svg-inline-loader").loader("vue-svg-inline-loader");
//💖 import common less var * mixin ~
const types = ["vue-modules", "vue", "normal-modules", "normal"];
var preload_styles = [];
preload_styles.push(
path.resolve(__dirname, "./node_modules/csslab/base.less"),
path.resolve(__dirname, "./node_modules/@jx3box/jx3box-common/css/var.less"),
path.resolve(__dirname, "./src/assets/css/var.less")
);
function addStyleResource(rule) {
rule.use("style-resource").loader("style-resources-loader").options({
patterns: preload_styles,
});
}
types.forEach((type) => addStyleResource(config.module.rule("less").oneOf(type)));
},
};