docs: add stderr and stdout to example (#23474)

This commit is contained in:
Debbie O'Brien 2023-06-06 07:18:41 -07:00 committed by GitHub
parent 0feef340c9
commit dfe40de1fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,8 @@ export default defineConfig({
command: 'npm run start', command: 'npm run start',
url: 'http://127.0.0.1:3000', url: 'http://127.0.0.1:3000',
reuseExistingServer: !process.env.CI, reuseExistingServer: !process.env.CI,
stdout: 'ignore',
stderr: 'pipe',
}, },
}); });
``` ```