forked from ephemeraHQ/xmtp-inbox-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.reflame.config.jsonc
179 lines (179 loc) · 4.39 KB
/
.reflame.config.jsonc
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
{
// This is a JSON with Comments file.
// It's basically JSON, with the addition of comments, and looser syntax
// (trailing commas!).
// Reflame uses this to identify your app.
"appId": "01H3N3HTS2MAWNK33P0K6QF386", // prod
// "appId": "01H30NCV90SQP7ZJDCG9P7RJRG", // prod fork
// "appId": "01H335HJ288YMK1YM60ZTVWF42", // dev
// This is what shows up in the browser's tab bar.
"title": "Wallet DM",
// This is the description that shows up in Google search.
"description": "Chat via WalletDM",
// Reflame will watch this directory for your React source code and deploy changes
// instantly.
//
// This normally defaults to 'app', but we set this to 'src' for Vite compatibility.
"sourceDirectory": "src",
// Reflame will use this to keep your app up to date as we make improvements.
"foundation": {
"name": "vite-react",
"version": 2
},
"commandPanel": {
"initialPosition": "topRight"
},
// Enables nodejs compatibility mode for extensionless imports for JS/TS modules
"nodejsCompatibility": {
"omitModuleExtension": true,
"mapIndexToDirectory": true,
"packageJson": true
},
"tailwindCompatibility": {
"stylesheetPathname": "/globals.css",
"theme": {
"spacing": {
"84": "21rem"
},
"colors": {
"b": {
"100": "#BFCEFF",
"200": "#90A9FF",
"300": "#5E80F6",
"400": "#3448FF",
"500": "#0c2cdc",
"600": "#0004a5"
},
"bt": {
"100": "#F5F6FF",
"200": "#EDEFFF",
"300": "#E1E4FF"
},
"g": {
"100": "#61E979"
},
"l": {
"100": "#ffaa85",
"200": "#ff7658",
"300": "#FC4F37",
"400": "#c91812",
"500": "#990101",
"600": "#690000"
},
"n": {
"100": "#c2c6d2",
"200": "#989ca7",
"300": "#70747e",
"400": "#4a4e57",
"500": "#272b34",
"600": "#010613"
},
"p": {
"100": "#ffcfff",
"200": "#da9dfd",
"300": "#AC73E7",
"400": "#824DBD",
"500": "#5a2895",
"600": "#31006e"
},
"y": {
"100": "#f5e33e",
"200": "#c7b902"
}
},
"fontFamily": {
"sans": "SF Pro Rounded,Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\",Segoe UI Symbol,\"Noto Color Emoji\"",
"mono": "Inconsolata,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace"
},
"fontSize": {
"xs": "12px",
"sm": "14px",
"md": "15px",
"lg": "18px",
"xl": "20px"
}
}
},
"scripts": [
"/polyfills.ts",
"/main.tsx"
],
"stylesheets": [
"https://fonts.googleapis.com/css?family=Inter:400,500,600,700|Inconsolata:400,600,700&display=swap"
],
// NPM packages listed here will be installed by Reflame every time you update this file.
//
// It's important to only include packages that will be used by your app in browsers here.
// Including dev-time dependencies that run in node can result in deploy failures and poor
// performance.
"npmPackages": {
"@heroicons/react": {
"entryPoints": [
"/outline",
"/solid"
]
},
"@wagmi/core": {
"entryPoints": [
"/",
"/connectors/mock"
]
},
"wagmi": {
"entryPoints": [
"/window",
"/",
"/actions",
"/providers/public",
"/providers/infura",
"/chains"
]
},
"ethers": {
"entryPoints": [
"/",
"/lib"
]
},
"date-fns": {
"entryPoints": [
"/",
"/locale"
]
},
"@rainbow-me/rainbowkit": {
"entryPoints": [
"/wallets",
"/",
"/styles.css"
]
},
"react-medium-image-zoom": {
"entryPoints": [
"/",
"/dist/styles.css"
]
},
"react-tooltip": {
"entryPoints": [
"/dist/react-tooltip.css",
"/"
]
},
"lodash": {
"entryPoints": [
"/debounce",
"/memoize",
"/throttle",
"/"
]
},
"viem": {
"entryPoints": [
"/accounts",
"/chains",
"/"
]
}
}
}