fix(compat): disable stdin-discarder (#2640)

pull/2641/head
Divyansh Singh 12 months ago committed by GitHub
parent ec7643dc13
commit 08c4bacac5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -43,7 +43,7 @@ export async function build(
const entryPath = path.join(siteConfig.tempDir, 'app.js')
const { render } = await import(pathToFileURL(entryPath).toString())
const spinner = ora()
const spinner = ora({ discardStdin: false })
spinner.start('rendering pages...')
try {

@ -145,7 +145,7 @@ export async function bundle(
let clientResult: RollupOutput | null
let serverResult: RollupOutput
const spinner = ora()
const spinner = ora({ discardStdin: false })
spinner.start('building client + server bundles...')
try {
clientResult = config.mpa

Loading…
Cancel
Save