Nuxt.js build error, because of 'maintained node versions' referring pennding Node version.
show this error message.
Module build failed (from ./node_modules/nuxt/node_modules/postcss-loader/src/index.js):
BrowserslistError: Unknown version 11 of Node.js


All my CI builds fall with this error (due to depends on @babel/preset-env).
Seems ~preset-env~ browserslist firstly get all versions by user's query (maintained node versions), then checks this versions separately:
1) maintained node versions -> ..., v10, v11 (https://github.com/browserslist/browserslist/blob/master/index.js#L706, https://raw.githubusercontent.com/nodejs/Release/master/schedule.json, v11 is exist)
2) node 10 -> OK
3) node 11 -> ERROR (https://github.com/browserslist/browserslist/blob/master/index.js#L679, https://nodejs.org/dist/index.json, v11 - doesn't exist)
Changing maintained node versions to node 10 in your .browserslistrc works as a temp fix.
Oh. I waked up and need 15 minutes for breakfast. Then I will investigate the source of the error and how to fix it.
Fixed in 4.3.2
Most helpful comment
Changing
maintained node versionstonode 10in your .browserslistrc works as a temp fix.