We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec7643d commit 08c4bacCopy full SHA for 08c4bac
src/node/build/build.ts
@@ -43,7 +43,7 @@ export async function build(
43
const entryPath = path.join(siteConfig.tempDir, 'app.js')
44
const { render } = await import(pathToFileURL(entryPath).toString())
45
46
- const spinner = ora()
+ const spinner = ora({ discardStdin: false })
47
spinner.start('rendering pages...')
48
49
try {
src/node/build/bundle.ts
@@ -145,7 +145,7 @@ export async function bundle(
145
let clientResult: RollupOutput | null
146
let serverResult: RollupOutput
147
148
149
spinner.start('building client + server bundles...')
150
151
clientResult = config.mpa
0 commit comments