Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(og-mw-setup): Fix typo in notes for og-middleware setup #10736

Merged
merged 2 commits into from
Jun 5, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ export async function handler({ force }: { force: boolean }) {
"og:image generation is almost ready to go! You'll need to add playwright as a dependency to the api side and then install the headless browser packages:",
dac09 marked this conversation as resolved.
Show resolved Hide resolved
)
notes.push('')
notes.push(' yarn workspace api add playwright')
notes.push(' yarn workspace api playwright install')
notes.push(' yarn workspace web add playwright')
notes.push(' yarn workspace web playwright install')
notes.push('')
notes.push(
'Depending on how your host is configured you may need to install additional dependencies first. If so, the `playwright install` step will error out and give you the command to run to install those deps.',
Expand Down
Loading