const { chromium } = require('playwright'); (async () => { const server = await chromium.launchServer({ port: 3000, headless: true, args: ['--disable-gpu', '--no-sandbox', '--disable-dev-shm-usage'] }); console.log('Browser Server running on port 3000...'); await new Promise(() => {}); })();