Skip to content

Commit e93a642

Browse files
committed
remove logs
1 parent 985bc65 commit e93a642

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/gatsby/src/utils/build-html.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,11 @@ module.exports = async (program: any) => {
2727
return new Promise((resolve, reject) => {
2828
webpack(compilerConfig.resolve()).run((e, stats) => {
2929
if (e) {
30-
console.log(e)
3130
return reject(e)
3231
}
3332
const outputFile = `${directory}/public/render-page.js`
3433
if (stats.hasErrors()) {
3534
let webpackErrors = stats.toJson().errors
36-
console.log(webpackErrors)
3735
return reject(
3836
createErrorFromString(webpackErrors[0], `${outputFile}.map`)
3937
)

0 commit comments

Comments
 (0)