We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e289a5f commit bd9e254Copy full SHA for bd9e254
bin/compile
@@ -0,0 +1,10 @@
1
+#!/usr/bin/env bash
2
+
3
+# taken from https://github.com/playwright-community/heroku-playwright-buildpack/blob/master/bin/compile
4
+set -e
5
6
+BUILD_DIR=$1
7
8
+# modify the installation location
9
+export PLAYWRIGHT_BROWSERS_PATH=$BUILD_DIR/browsers
10
+playwright install --with-deps chromium
bin/detect
@@ -0,0 +1,5 @@
+#!/bin/sh
+# taken from https://github.com/playwright-community/heroku-playwright-buildpack/blob/master/bin/detect
+echo "Playwright"
+exit 0
0 commit comments