We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 697a6bd commit c5de89fCopy full SHA for c5de89f
.devcontainer/devcontainer.json
@@ -1,21 +1,24 @@
1
{
2
+ "hostRequirements": {
3
+ "cpus": 4
4
+ },
5
+ "waitFor": "onCreateCommand",
6
+ "updateContentCommand": "npm install",
7
+ "postCreateCommand": "",
8
"postAttachCommand": {
- "server": "npm start",
9
+ "server": "npm start"
10
11
+ "customizations": {
12
+ "codespaces": {
13
+ "openFiles": [
14
+ "index.js"
15
+ ]
16
+ }
17
},
-
18
"portsAttributes": {
19
"3000": {
20
"label": "Application",
21
"onAutoForward": "openPreview"
22
}
- },
- "customizations": {
- "codespaces": {
- "openFiles": ["index.js"]
- }
- "onCreateCommand": "npm install",
- "postCreateCommand": "",
- "hostRequirements": {"cpus": 4}
-}
23
24
+}
0 commit comments