Skip to content

Commit 4123a3a

Browse files
committed
Install playwright
1 parent dcb8bc5 commit 4123a3a

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

bin/build.mjs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ import { join } from 'path';
44

55
const PORT = 8080;
66

7-
console.log('Building production app...');
7+
console.log('Installing playwright browsers...');
8+
execSync('pnpm exec playwright install', { stdio: 'inherit' });
9+
10+
console.log('\nBuilding production app...');
811
execSync('ember build --environment=production', { stdio: 'inherit' });
912

1013
console.log(`\nStarting http-server on port ${PORT}...`);

0 commit comments

Comments
 (0)