-
Notifications
You must be signed in to change notification settings - Fork 37
/
vue.config.js
173 lines (164 loc) · 4.37 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
/**
* 方案一
* 生成的文件为
* -dist
* - img
* - index
* - index.js
* - index.css
* - index.html
* - page1
* - index.js
* - index.css
* - index.html
* - page2
* - index.js
* - index.css
* - index.html
*/
// const path = require("path");
// const glob = require("glob");
// const fs = require("fs");
// const config = {
// entry: "main.js",
// html: "index.html",
// pattern: ["src/pages/*"]
// };
// const genPages = () => {
// const pages = {};
// const pageEntries = config.pattern.map(e => {
// const matches = glob.sync(path.resolve(__dirname, e));
// return matches.filter(match => fs.existsSync(`${match}/${config.entry}`));
// });
// Array.prototype.concat.apply([], pageEntries).forEach(dir => {
// const filename = dir.split('pages/')[1];
// const pathName = 'src' + dir.split('src')[1]
// pages[filename] = {
// entry: `${pathName}/${config.entry}`,
// template: `${pathName}/${config.html}`,
// filename: `${filename}/${config.html}`,
// };
// });
// return pages;
// };
// const pages = genPages();
// module.exports = {
// productionSourceMap: false,
// pages,
// chainWebpack: config => {
// Object.keys(pages).forEach(entryName => {
// config.plugins.delete(`prefetch-${entryName}`);
// });
// if (process.env.NODE_ENV === "production") {
// config.plugin("extract-css").tap(() => [
// {
// filename: "[name]/css/[name].[contenthash:8].css",
// chunkFilename: "[name]/css/[name].[contenthash:8].css"
// }
// ]);
// }
// },
// configureWebpack: config => {
// if (process.env.NODE_ENV === "production") {
// config.output = {
// path: path.join(__dirname, "./dist"),
// filename: "[name]/js/[name].[contenthash:8].js",
// publicPath: "/",
// chunkFilename: "[name]/js/[name].[contenthash:8].js"
// };
// }
// }
// };
/**
* 方案二
* 生成的文件为
* -dist
* - css
* - index.xxx.css
* - page1.xxx.css
* - page2.xxx.css
* - img
* - index.html
* - page1.html
* - page2.html
*/
let path = require('path')
let glob = require('glob')
//配置pages多页面获取当前文件夹下的html和js
function getEntry(globPath) {
let entries = {},
basename, tmp, pathname;
glob.sync(globPath).forEach(function(entry) {
basename = path.basename(entry, path.extname(entry));
// console.log(entry)
tmp = entry.split('/').splice(-3);
pathname = basename; // 正确输出js和html的路径
// console.log(pathname)
entries[pathname] = {
entry: 'src/' + tmp[0] + '/' + tmp[1] + '/main.js',
template: 'src/' + tmp[0] + '/' + tmp[1] + '/' + tmp[2],
title: tmp[2],
filename: tmp[2]
};
});
return entries;
}
let pages = getEntry('./src/pages/**?/*.html');
//配置end
module.exports = {
lintOnSave: false, //禁用eslint
productionSourceMap: false,
pages,
devServer: {
index: 'index.html', //默认启动serve 打开index页面
open: process.platform === 'darwin',
host: '',
port: 8080,
https: false,
hotOnly: false,
proxy: null, // 设置代理
before: app => {}
},
// css相关配置
css: {
extract: true, // 是否使用css分离插件 ExtractTextPlugin
sourceMap: false, // 开启 CSS source maps?
loaderOptions: {
less: {
javascriptEnabled: true
}
}, // css预设器配置项
modules: false // 启用 CSS modules for all css / pre-processor files.
},
// 是否为 Babel 或 TypeScript 使用 thread-loader。该选项在系统的 CPU 有多于一个内核时自动启用,仅作用于生产构建。
parallel: require('os').cpus().length > 1,
chainWebpack: config => {
config.module
.rule('images')
.use('url-loader')
.loader('url-loader')
.tap(options => {
// 修改它的选项...
options.limit = 100
return options
})
Object.keys(pages).forEach(entryName => {
config.plugins.delete(`prefetch-${entryName}`);
});
if(process.env.NODE_ENV === "production") {
config.plugin("extract-css").tap(() => [{
path: path.join(__dirname, "./dist"),
filename: "css/[name].[contenthash:8].css"
}]);
}
},
configureWebpack: config => {
if(process.env.NODE_ENV === "production") {
config.output = {
path: path.join(__dirname, "./dist"),
publicPath: "/",
filename: "js/[name].[contenthash:8].js"
};
}
}
}