new FriendlyErrorsWebpackPlugin({
compilationSuccessInfo: {
messages: [`You application is running here http://localhost:${config.dev.port}`],
},
})

the console didn't console any message, but if I add a notes:
new FriendlyErrorsWebpackPlugin({
compilationSuccessInfo: {
messages: [`You application is running here http://localhost:${config.dev.port}`],
++ notes: ['Some additionnal notes to be displayed unpon successful compilation']
},
})

plus, I checked the source coed,
compilationSuccessInfo?: {
messages: string[],
notes: string[],
};
so I have to give both the params?