-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
67 lines (64 loc) · 2.28 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
const path = require("path");
function getProdExternals() {
return {
vue: "vue",
lodash: "lodash",
"vue-drag-resize": "vue-drag-resize",
"vue-material-design-icons": "vue-material-design-icons",
"vue-resize-directive": "vue-resize-directive",
"vue-material-design-icons/ArrangeBringForward.vue":
"vue-material-design-icons/ArrangeBringForward.vue",
"vue-material-design-icons/ArrangeSendBackward.vue":
"vue-material-design-icons/ArrangeSendBackward.vue",
"vue-material-design-icons/ArrowDownDropCircleOutline.vue":
"vue-material-design-icons/ArrowDownDropCircleOutline.vue",
"vue-material-design-icons/ArrowUpDropCircleOutline.vue":
"vue-material-design-icons/ArrowUpDropCircleOutline.vue",
"vue-material-design-icons/Close.vue":
"vue-material-design-icons/Close.vue",
"vue-material-design-icons/DragVariant.vue":
"vue-material-design-icons/DragVariant.vue",
"vue-material-design-icons/MenuLeft.vue":
"vue-material-design-icons/MenuLeft.vue",
"vue-material-design-icons/MenuRight.vue":
"vue-material-design-icons/MenuRight.vue"
};
}
module.exports = {
publicPath:
process.env.NODE_ENV === "webproduction" ? "/vue-library-draggable/" : "/",
css: {
extract: false
},
transpileDependencies: true,
chainWebpack: (config) => {
// These are some necessary steps changing the default webpack config of the Vue CLI
// that need to be changed in order for Typescript based components to generate their
// declaration (.d.ts) files.
//
// Discussed here https://github.com/vuejs/vue-cli/issues/1081
if (process.env.NODE_ENV === "production") {
config.module.rule("ts").uses.delete("cache-loader");
config.module
.rule("ts")
.use("ts-loader")
.loader("ts-loader")
.tap((opts) => {
opts.transpileOnly = false;
opts.happyPackMode = false;
return opts;
});
}
},
parallel: false,
configureWebpack: {
externals: process.env.NODE_ENV === "production" ? getProdExternals() : {},
resolve: {
alias: {
"@components": path.join(__dirname, "src/components/"),
"@constant": path.join(__dirname, "src/constant/"),
"@utils": path.join(__dirname, "src/utils/")
}
}
}
};