-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathvue.config.cjs
43 lines (43 loc) · 1.14 KB
/
vue.config.cjs
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
module.exports = {
pages: {
index: {
entry: 'project/src/main.ts'
},
"prompt-modal": {
entry: "examples/prompt-modal/main.ts"
},
"multi-modals": {
entry: "examples/multi-modal/main.ts"
},
"open-modal": {
entry: "examples/open-modal/main.ts"
},
"vue-router-with-modal": {
entry: "examples/vue-router-with-modal/main.ts"
},
"demo": {
entry: "examples/pretty-modal/main.ts"
},
"simple-animation": {
entry: "examples/simple-animation/main.ts"
},
"example-router": {
entry: "examples/vue-router-with-modal/main.ts"
},
"sidebar-modal": {
entry: "examples/side-modal/main.ts"
},
"handle-closing": {
entry: "examples/handle-closing/main.ts"
},
"namespace": {
entry: "examples/use-namespace/main.ts"
},
"draggable": {
entry: "examples/draggable/main.ts"
},
"test": {
entry: "project/src/test/main.ts"
}
}
}