wechaty / getting-started

A Starter Project Template for Wechaty works out-of-the-box
https://gitpod.io/#https://github.com/wechaty/wechaty-getting-started
Apache License 2.0
779 stars 344 forks source link

Gitpod fail to load in browser after init #160

Open huan opened 3 years ago

huan commented 3 years ago

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.