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 303f715 commit be7119aCopy full SHA for be7119a
.devcontainer/devcontainer.json
@@ -0,0 +1,31 @@
1
+{
2
+ "name": "openSenseMap frontend",
3
+ "image": "node:22",
4
+ "features": {
5
+ "ghcr.io/devcontainers/features/docker-in-docker": "latest"
6
+ },
7
+ "customizations": {
8
+ "vscode": {
9
+ "settings": {
10
+ "editor.formatOnSave": true,
11
+ "editor.defaultFormatter": "esbenp.prettier-vscode"
12
13
+ "extensions": [
14
+ "esbenp.prettier-vscode",
15
+ "dbaeumer.vscode-eslint",
16
+ "bradlc.vscode-tailwindcss"
17
+ ]
18
+ }
19
20
+ "mounts": [
21
+ "source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind"
22
+ ],
23
+ "forwardPorts": [3000],
24
+ "portsAttributes": {
25
+ "3000": {
26
+ "label": "frontend",
27
+ "onAutoForward": "openBrowserOnce"
28
29
30
+ "postStartCommand": "npm install && npm run build"
31
+}
0 commit comments