-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvue.config.js
75 lines (73 loc) · 1.8 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
const path = require("path");
function resolve(dir) {
return path.join(__dirname, dir);
}
module.exports = {
publicPath: "/",
// 放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录。
assetsDir: "assets",
devServer: {
port: 7000,
disableHostCheck: true
},
css: {
// 不提取 css,直接打包到 js 文件中
// extract: false,
// sourceMap: false,
loaderOptions: {
// 给 scss 文件注入全局变量
scss: {
prependData: `@import "~mui/theme-chalk/src/common/theme.scss";`
}
}
},
chainWebpack: config => {
config.plugin("html").tap(options => {
options[0].title = "前端 UI 库";
return options;
});
// 使用自定义 loader
config.module
.rule("md-loader")
.test(/\.md$/)
.use("vue-loader")
.loader("vue-loader")
.options({
compilerOptions: {
preserveWhitespace: false
}
})
.end()
.use("md-enhance-vue")
.loader("md-enhance-vue")
.options({
// lineNumbers: false,
// toc: {},
// anchor: {
// permalinkSymbol: "#"
// }
})
.end();
},
// 使用 runtime 时 vue 文件
runtimeCompiler: true,
// 扩展 webpack 配置,使 packages 加入编译
configureWebpack: {
resolve: {
alias: {
"@": resolve("src"),
"@img": resolve("src/assets/images"),
"@styles": resolve("src/assets/styles"),
// 开发阶段使用别名引用
mui: resolve("packages")
},
extensions: [".tsx", ".ts", ".js", ".vue"]
}
// output: {
// // 直接暴露对象,减少 default 嵌套
// libraryExport: "default"
// }
},
productionSourceMap: false,
parallel: require("os").cpus().length > 1
};