Compare commits

...

4 Commits

Author SHA1 Message Date
Saúl Ibarra Corretgé e95f2f7341 fixup! 2022-12-02 15:58:52 +00:00
Saúl Ibarra Corretgé c56db8af77 fixup devcontainer 2022-12-02 15:55:22 +00:00
Saúl Ibarra Corretgé a66c770053 fix(build) use http for GitHub codespaces 2022-12-02 15:15:56 +00:00
Saúl Ibarra Corretgé 2eaa87a719
Create devcontainer.json 2022-12-02 15:50:01 +01:00
2 changed files with 16 additions and 1 deletions

View File

@ -0,0 +1,15 @@
{
"name": "Jitsi Meet Dev Container",
"image": "mcr.microsoft.com/devcontainers/universal:2",
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": "16"
}
},
"hostRequirements": {
"cpus": 4,
"memory": "8gb",
"storage": "32gb"
},
"postCreateCommand": "bash -i -c 'nvm use && npm install && cp tsconfig.web.json tsconfig.json'"
}

View File

@ -266,7 +266,7 @@ function getDevServerConfig() {
}
}
},
server: 'https',
server: process.env.CODESPACES ? 'http' : 'https',
static: {
directory: process.cwd()
}