mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
write files even on error
This commit is contained in:
parent
f2d456b986
commit
400b75658b
|
@ -27,7 +27,10 @@ export default async function createCompiler (dir, { hotReload = false } = {}) {
|
|||
compress: { warnings: false },
|
||||
sourceMap: false
|
||||
}),
|
||||
new WriteFilePlugin({ log: false })
|
||||
new WriteFilePlugin({
|
||||
exitOnErrors: false,
|
||||
log: false
|
||||
})
|
||||
]
|
||||
|
||||
const babelRuntimePath = require.resolve('babel-runtime/package')
|
||||
|
|
Loading…
Reference in a new issue