Files
game-cards-poker-design/frontend/node_modules/fabric/.gitpod.yml
Poker Design Developer 5dbcebf7a2 Fix frontend blank page issues
- Fix router import path in main.js
- Handle Django REST Framework pagination format in API calls
- Add getTemplates function to project API
- Restart frontend development server
2026-05-31 18:40:56 +08:00

23 lines
475 B
YAML

# https://www.gitpod.io/docs/config-gitpod-file
tasks:
- name: Build & Watch
init: npm install
command: npm run build -- -w -f
- name: Node
init: npm install
command: npm start node -- --no-watch
- name: Next.js
init: npm install
command: npm start next -- --no-watch
- name: Vanilla
init: npm install
command: npm start vanilla -- --no-watch
- name: Vue.js
init: gp sync-await deps
command: npm start vue -- --no-watch