/ .gitpod.yml
.gitpod.yml
 1  image:
 2    file: .gitpod.Dockerfile
 3  
 4  tasks:
 5    - init: pnpm install && pnpm run build
 6      name: dev
 7      command: |
 8        gp sync-done ready
 9        pnpm run dev
10    - name: pnpm start:chromium
11      command: |
12        gp sync-await ready
13        gp ports await 6080
14        gp preview $(gp url 6080)
15        sleep 5
16        pnpm start:chromium
17      openMode: split-right
18  
19  ports:
20    - port: 5900
21      onOpen: ignore
22    - port: 6080
23      onOpen: ignore