Skip to content

Commit

Permalink
fix: minify
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Dec 30, 2020
1 parent 2d77eaf commit e3d7fc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node/build/bundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export async function bundle(
})
}
},
minify: false //ssr ? false : !process.env.DEBUG
minify: ssr ? false : !process.env.DEBUG
}
})

Expand Down

0 comments on commit e3d7fc0

Please sign in to comment.