-
Notifications
You must be signed in to change notification settings - Fork 4
/
vue.config.cjs
56 lines (56 loc) · 1.3 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
44
45
46
47
48
49
50
51
52
53
54
55
56
const { defineConfig } = require('@vue/cli-service')
const path = require("path");
module.exports = defineConfig({
transpileDependencies: true,
pages: {
index: {
entry: './project/pages/index/main.ts'
},
"simple-form": {
entry: './examples/simple-form/main.ts'
},
"disable-form": {
entry: './examples/disable-enable-form/main.ts'
},
"form-changes": {
entry: "./examples/form-changes/main.ts"
},
"form-proxy": {
entry: "./examples/form-proxy/main.ts"
},
"input-country": {
entry: "./examples/input-country/main.ts"
},
"input-otp": {
entry: "./examples/input-otp/main.ts"
},
"test": {
entry: "./project/pages/test/main.ts"
},
"inputs": {
entry: "./project/pages/inputs/main.ts"
},
"input-select": {
entry: "./examples/input-select/main.ts"
},
"input-checkbox": {
entry: "./examples/input-checkbox/main.ts"
},
"all-inputs": {
entry: "./examples/all-inputs/main.ts"
},
"input-single-radio": {
entry: "./examples/input-single-radio/main.ts"
},
"form-autonomic": {
entry: "./examples/autonomic-form/main.ts"
}
},
configureWebpack: {
resolve: {
alias: {
"@": path.resolve(__dirname, 'project')
}
}
}
})