-
Notifications
You must be signed in to change notification settings - Fork 0
/
.reflame.config.jsonc
30 lines (30 loc) · 1.18 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
{
// 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": "01GFQMPRR0B719YBD19X6K63KP",
// This is what shows up in the browser's tab bar.
"title": "Reflame App",
// This is the description that shows up in Google search.
"description": "A new Reflame app.",
// 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 CRA compatibility.
"sourceDirectory": "src",
// Reflame will use this to keep your app up to date as we make improvements.
"foundation": {
"name": "cra-react",
"version": 2,
},
// 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": {
// Specify npm packages in the same format as you would with package.json
"web-vitals": "^3.0.4",
},
}