getting-started icon indicating copy to clipboard operation
getting-started copied to clipboard

Gitpod fail to load in browser after init

Open huan opened this issue 4 years ago • 0 comments

If we add npm install to tasks.init, then the Gitpod loading in the browser will fail.

image

Do not do npm install in tasks.init will fix it.

tasks:
  - name: Wechaty ding-dong BOT
-     init: npm install
+     init: echo 'npm install'
    command: npm install && npm start

Wired.

huan avatar Feb 05 '21 08:02 huan