iptv-stream-web/.vscode/launch.json
Vincent da1528c529 Add comprehensive styles for video streaming and chat interface
- Implement base styles for the application layout and components.
- Define color variables for consistent theming.
- Style the video player, chat section, and user interface elements.
- Add responsive design adjustments for mobile devices.
- Include animations for buttons and notifications for enhanced user experience.
2025-09-28 22:03:28 -04:00

14 lines
No EOL
280 B
JSON

{
"configurations": [
{
"type": "php",
"request": "launch",
"name": "Launch PHP Program",
"program": "${workspaceFolder}/index.php",
"runtimeArgs": [
"-dxdebug.start_with_request=yes"
],
"port": 9003
}
]
}