-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
104 lines (102 loc) · 1.66 KB
/
app.config.ts
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
import type { Preset } from './types/Preset'
const presets: Preset[] = [
{
key: '400x300',
name: '4:3 (400x300)',
width: 400,
widthRatio: 4,
height: 300,
heightRatio: 3
},
{
key: '800x600',
name: '4:3 (800x600)',
width: 800,
widthRatio: 4,
height: 600,
heightRatio: 3
},
{
key: '1200x900',
name: '4:3 (1200x900)',
width: 1200,
widthRatio: 4,
height: 900,
heightRatio: 3
},
{
key: '1600x900',
name: '16:9 (1600x900)',
width: 1600,
widthRatio: 16,
height: 900,
heightRatio: 9
},
{
key: '1600x1200',
name: '4:3 (1600x1200)',
width: 1600,
widthRatio: 4,
height: 1200,
heightRatio: 3
},
{
key: '2000x1500',
name: '4:3 (2000x1500)',
width: 2000,
widthRatio: 4,
height: 1500,
heightRatio: 3
},
{
key: '2400x1800',
name: '4:3 (2400x1800)',
width: 2400,
widthRatio: 4,
height: 1800,
heightRatio: 3
},
{
key: '2800x2100',
name: '4:3 (2800x2100)',
width: 2800,
widthRatio: 4,
height: 2100,
heightRatio: 3
},
{
key: '3200x1800',
name: '16:9 (3200x1800)',
width: 3200,
widthRatio: 16,
height: 1800,
heightRatio: 9
},
{
key: '3200x2400',
name: '4:3 (3200x2400)',
width: 3200,
widthRatio: 4,
height: 2400,
heightRatio: 3
},
{
key: '3600x2700',
name: '4:3 (3600x2700)',
width: 3600,
widthRatio: 4,
height: 2700,
heightRatio: 3
},
{
key: '4000x3000',
name: '4:3 (4000x3000)',
width: 4000,
widthRatio: 4,
height: 3000,
heightRatio: 3
}
]
export default defineAppConfig({
presets
})